1.
What is the difference between = and ==
2.
What is the data type of: x = 10
3.
What is the output? for i in range(3): print(i)
4.
Find output print(2 ** 3)
5.
What happens if all conditions in if-elif are False and no else is given
6.
Which is correct about Python execution?
7.
What is the output of: 10 % 3
10.
What is the purpose of or operator?
11.
Which data type stores True/False?
12.
Which operator is used for exponentiation
13.
Which keyword is used for loop?
14.
Find error ? for i in range(3) print(i)
15.
Find output x = 7 if x < 5: print("Low") else: print("High")
16.
What does // operator do?
17.
Which function is used to display output?
19.
Which keyword is used for multiple conditions?
1 out of 1