Q. What is the output of the following program :
Code:
i = 0
while i < 5:
print(i)
i += 1
if i == 3:
break
else:
print(0)
β
Correct Answer: (B)
0 1 2
Explanation: In the code above, i is initialise with 0. While loop runs till the value of i is reached to 5. But when I==3 there is break; so while loop will end.
Output will be 0 1 2.