Font size
WorksheetsКонтрольная работа
Total questions: 20
Worksheet time: 59mins
A=1 B=0 C=1
D = A˅(B˄C)
D=0
D=1
D=2
A=1 B=0
D=A˅B
D=1
D=2
D=0
A=1 B=0 C=1
D=A∨˥B→C
D=3
D=1
D=0
A=0 B=0 C=1
D=A↔(˥B˄C)
D=2
D=1
D=0
A = 21
B = 5
C = A // B
print(′C=′,C)
C=4
C=2
C=1
C=5
print(9%4)
2
3
1
4
print (8 * * 3)
211
28
24
512
x=11
x%=3
print(x)
2
14
8
33
x=20
x%=7
print(x)
27
6
2
14
x=7
x//=4
print(x)
3
11
7
1
x = 57
A = x // 10
B = x % 10
C = A * B
print('C=',C)
C=12
C=570
C=35
C=0.57
a = 'Hello'
print (a * 3)
'Hello'
HelloHelloHello
Hello*Hello*Hello
print((3 > 5) and (2 > 4))
(a)
a = 20
b = 28
print(a>17 and b==28)
(a)
a = 20
b = 28
c=True
print(a>17 and b>22 and c)
False
True
or
and
a = 20
c = False
d = a > 17 or c
print(d)
and
True
False
a = 20
c = False
d = not a > 17 or not c
print(d)
(a)
d = (2 == 0) or (2 != 2)
print(d)
(a)
a = 66
b = 22
c = 7
d = not((a > b) or (b < c))
print(d)
(a)
a=15
b = (a<=5 or a>=0 and a<3)
print(b)
False
True
