שאלה מס' 48 ב- PHP
What should be the output of the above code snippet?
What should be the output of the above code snippet?
Anonymous Quiz
50%
30
0%
20
42%
Parse error.
8%
All answers incorrect.
שאלה מס' 49 ב- PHP
בשימוש ב- xor operator כאשר מצויין ש- true xor true מה הערך שיוחזר
בשימוש ב- xor operator כאשר מצויין ש- true xor true מה הערך שיוחזר
Anonymous Quiz
47%
true
53%
false
קטע קוד עבור שאלה מס' 50 ב- PHP
<?php
$a = 8;
$b =8;
$c = 17;
$d = 26;
if(($a == $b) xor( $d > $c )){
echo 'true';
} else{
echo 'false';
}
שאלה מס' 50 ב- PHP
What should be the output in code snnipet that display abovw?
What should be the output in code snnipet that display abovw?
Anonymous Quiz
46%
true
54%
false
שאלה מס' 1 ב- computer networkink
מה ראשי התיבות שמתכוונים ל- IoT ?
מה ראשי התיבות שמתכוונים ל- IoT ?
Anonymous Quiz
86%
Internet of thing
5%
Internet on television
3%
Inernet on telephone
5%
Internet of time
שאלה מס' 2 ב- computer networking
How many conductors are there in ethernet cable?
How many conductors are there in ethernet cable?
Anonymous Quiz
68%
8
15%
4
15%
6
3%
5
שאלה מס' 3 ב- computer network
מה מתכוונים בראשי תיבות PAN ?
מה מתכוונים בראשי תיבות PAN ?
Anonymous Quiz
63%
Personal area network
17%
Port air network
8%
Protocol aim network
13%
Packs auto network.
שאלה מס' 4 ב- computer networking
כיצד נחשב החיבור של wireless controller לקנוסולה כמו Xbox ?
כיצד נחשב החיבור של wireless controller לקנוסולה כמו Xbox ?
Anonymous Quiz
40%
PAN
43%
LAN
10%
CAN
7%
MAN
שאלה מס' 5 ב- computing networking
Which choice is not an example of an IoT device?
Which choice is not an example of an IoT device?
Anonymous Quiz
3%
Security camera
3%
Smart TV
83%
Desktop PC
10%
smart thermostat
👍1
הערוץ של קבוצת תכנות ועיצוב ובניית אתרים ו- QA ו- אבטחת מידע ו-
the drawing for 6 question in computing network
שאלה מס' 6 ב- computing networking
The drawing shows a data center located at a company's headquarters sending real-time updates to a hot site, which is an off-site location containing duplicate server hardware. In this topology, when a change is made to a server in the HQ data center, that change is immediate sent to the hot site, such that the servers at the hot site are essentially a mirror image of the data center servers. This illustrates which of the following network benefits?
The drawing shows a data center located at a company's headquarters sending real-time updates to a hot site, which is an off-site location containing duplicate server hardware. In this topology, when a change is made to a server in the HQ data center, that change is immediate sent to the hot site, such that the servers at the hot site are essentially a mirror image of the data center servers. This illustrates which of the following network benefits?
תשובות עבור שאלה מס' 6 ב- computing networking|
Anonymous Quiz
17%
communications
17%
monitoring
22%
resource sharing
44%
redundancy
שאלה מס' 52 ב_ HTML
אי\ה קטע קוד ייצור את הפלט כפי שמוצג בתמונה הנ"ל
אי\ה קטע קוד ייצור את הפלט כפי שמוצג בתמונה הנ"ל
Anonymous Quiz
8%
2<sup><small><small> 8</small></small></sup><sub>5</sub>
39%
2<sup><small><small> 5</small></small></sup><sub>8</sub>
25%
2<sub><small><small> 5</small></small></sub><sup>8</sup>
28%
2<sup>5</sup><sub><small>8</small></sub>
שאלה מס' 53 ב- HTML בגרסה מתוקנת
איזה קטע קוד ייצור את הפלט כפי שמוצג בתמונה הנ"ל
איזה קטע קוד ייצור את הפלט כפי שמוצג בתמונה הנ"ל
Anonymous Quiz
7%
<p>This is a demonstration</p>of the paragraph<p>tag</p>.
44%
<p>This is a</p>demonstration<p>of the paragraph<p>tag</p></p>.
22%
<p>This is a</p>demonstration<p>of the paragraph<p>tag.</p></p>
26%
<p>This is a</p>demonstration<p>of the paragraph tag</p>.
שאלה מס' 20 ב Python
lst1 = [1, 2]
lst2 = [3, 4]
for lst in lst1, lst2:
lst = lst[-1]
print(lst1, lst2)
שאלה מס' 21 ב Python
def foo():
try:
print(1)
raise Exception()
except Exception:
print(2)
return 3
finally:
print(4)
return 5
print(foo())
הערוץ של קבוצת תכנות ועיצוב ובניית אתרים ו- QA ו- אבטחת מידע ו-
שאלה מס' 21 ב Python def foo(): try: print(1) raise Exception() except Exception: print(2) return 3 finally: print(4) return 5 print(foo())
מה ידפיס הקוד הבא:
(תחליפו רווח בירידת שורה)
(תחליפו רווח בירידת שורה)
Anonymous Quiz
22%
1 2 3
2%
1 4 2 3
0%
4 1 2 3
11%
1 4 5
17%
1 2 3 4
28%
1 2 4 3
2%
1 5
12%
error
5%
4 1 5