הערוץ של קבוצת תכנות ועיצוב ובניית אתרים ו- QA ו- אבטחת מידע ו-
125 subscribers
14 photos
8 links
בערוץ ירוכזו שאלות ידע ותרגילים שפורסמו בקבוצה
Download Telegram
שאלה מס' 4 ב- computer networking
כיצד נחשב החיבור של 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?
Anonymous Quiz
3%
Security camera
3%
Smart TV
83%
Desktop PC
10%
smart thermostat
👍1
the drawing for 6 question in computing network
הערוץ של קבוצת תכנות ועיצוב ובניית אתרים ו- 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?
צילום עבור שאלה מס' 52 ב-HTML
צילום עבור השאלה מס' 53 ב- HTML
שאלה מס' 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())