

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following? i = 2 while True: if i%3 == 0: break print(i) i += 2 |
A. | 2 4 6 8 10 … |
B. | 2 4 |
C. | 2 3 |
D. | error |
Answer» C. 2 3 | |