Q. What is the output of the following code?
Code:i = 1
while False:
if i%2 == 0:
break
print(i)
i += 2
β
Correct Answer: (D)
None of the above
Explanation: The control does not go into the loop because of “False”.