InfoMaster
1.8K subscribers
1.93K photos
103 videos
835 files
1.66K links
✔️Kompyuter va uning dasturiy ta'minot haqida;

✔️Informatika fanidan masalalar yechimlari;

✔️Barcha fanlardan Online testlar;

✔️Barcha fanlardan attestatsiya testlari;

✔️Barcha fanlardan olimpiada testlari;

Web-site: info-master.uz
Download Telegram
Word dasturida qat’iy probelni o’rnatish uchun qaysi klavish bosiladi.
Anonymous Quiz
2%
Ctrl+Alt
71%
Ctrl+Shift+probel
22%
Ctrl+Shift+”-“
5%
Ctrl+Shift+”+”
Word dasturida qat’iy tire o’rnatish uchun qaysi klavish bosiladi.
Anonymous Quiz
63%
Ctrl+Shift+”-“
6%
Ctrl+Alt
21%
Ctrl+Shift+probel
10%
Ctrl+Shift+”+”
Word dasturida ¥ belgini hosil qilish tezkor tugmasini aniqlang.
Anonymous Quiz
19%
Alt+0195
40%
Alt+0165
27%
Alt+0149
14%
Alt+0145
InfoMaster
Word dasturida ¥ belgini hosil qilish tezkor tugmasini aniqlang.
shu va shunga o'xshagan simvollarni kodini ko'rish
👍1
Python. Dastur natijasini toping:
a=[1,2,3,4,5,6,7]
a[::-2]=[10,20,30,40] print(a)
Anonymous Quiz
15%
[1,3,5,7,20,40]
52%
[40, 2, 30, 4, 20, 6, 10]
27%
[1,2,3,4,5,6,7,10,20,30,40]
7%
[10,20,30,40]
Python. Dastur natijasini toping:
s1="informatika"
s2="axborot olami" s=s1[:-5]+s2[-6:] print(s)
Anonymous Quiz
13%
olamiinfor
10%
axborotlar
64%
inform olami
12%
axborot olami
Moslikni o’rnating.
Word 2010. Moslikni o’rnating.
Python. Moslikni o’rnating.
Python. Dastur natijasini toping:
logos=['Hp','Acer','Lenovo','Dell']
for logo in logos: print(logo.capitalize())
Anonymous Quiz
33%
HP ACER LENOVO DELL
15%
hp acer lenovo dell
20%
Hp acer lenovo dell
32%
Hp Acer Lenovo Dell
Python. Dastur natijasini toping:
f=lambda x: bool(x%2)
print(f(10), f(12))
Anonymous Quiz
33%
False False
46%
True True
18%
False True
4%
True False
Python. Dastur natijasini toping:
a=[[0]]*5
a[0]+=[[]] print(a[0]==a[0]) print(a[0] is a[0]) print(len(a[0])== bool(a[0]))
Anonymous Quiz
31%
False False False
34%
True True False
23%
False True False
11%
True True True
Python. Dastur natijasini toping:
f=lambda x: bool(x//2)
print(f(14), f(11))
Anonymous Quiz
31%
True True
26%
False False
28%
False True
15%
True False