Choose a topic to test your knowledge and improve your Python skills
print(4**2) will show ?
What is the use of the ** operator ?
print(4//2) will show ?
print(4++2) will show
print(3--5) will give
What is the use of the % operator ?
What will be output of the following program ? print(3%4)
What will it show ?, print(64%2)
What will the output of the following program, print(//)
From which of the following? , the output will be 32
print(9//2)
print(4<<2)
print(2<<1)
print(2>>3)
print(100>>4)
<< operator is replace by
>> operator is replace by
or() is replaced by which of the following operator ?
Which type of behavior is shown by the | operator ?
AND is shown by which of the operator ?
& operator is show the
Which of the following is not valid operator in the python
Which of the following operator is valid in the python ?
print(4*5)
print(100 & 4)
print(100|4)
print(50&4)
print(50&&4)
print(1000||300)
print(1000&300)
print(1000|300)
print(1000|300&234)
print(1000|300|234)
print(1000&300&234)
print(121--1000&300&234%23++1//4)
print(121--1000&300&234++1//4)
Which of the following is not correct ?
Which type of operator is not supported in the python programming language ?
print(1000<300)
print(1000>300)
print(1000==300)
print(10=10)
print(10>10<20==9)
Which of the following line gives a true output ?
print(10<50 & 300)
print(print(45+3))
print(print(45&34))
print(print(print(print(print(45))))), How many time it will print the None in output ?
print(45%4)
print(237//7)