True
False
Error
None
4
5
0
1
30
25
20
50
5.0
10
What is the output of the following code?
print(True and False)
|
||
or
&
6
2
65
97
32
67
a
b
A
B
\\n
\n
New line
re\new
new
re new
re ew
55
60
555
infinite
ZeroDivisionError
8
16
What will the following code output?
a=5;b=7 b=a print(a,” ”,b)
5 7
7 5
5 5
7 7
a,b,c=3,5,6 b,c,a=a,b,c print(a,” ”,b,” ”,c)
3 5 6
6 3 5
5 6 3
6 5 3
a,b,c=3,5,6 b,c,a=a+1,b+2,c+3 print(a,” ”,b,” ”,c)
7 9 4
4 7 9
9 4 7
a=5 a*=10 print(a)