@pradnyasclass
🔑Important Questions | MCQs | Flow of Control | Class 11 Computer Science
1. An empty/null statement in Python?
a) Go b) pass c) over d) ;
2. Function range(3) is equivalent to :
a) range(1,3) b) range(0,3)
c) range(0,3,1) d) range(1,3,0)
4.The list of numbers that would generate by the following range expression -
for i in range (1,10,2) :
print(i, end=" ")
(a) 1 3 5 7 9 (b) 1 3 5 7 9 10
(c) 1,3,5,7,9 (d) 1,3,5,7,9,10
5. Which of the following are jump statements?
(a) if (b) break (c) while (d) continue