Computer Science, asked by sarashaheen5633, 1 month ago

What is the output of the following? i = 1 while True: if i%2 == 0: break print(i) i += 2

Answers

Answered by yadavashish211104
0

Answer:

Null

Because 1%2 is not equal to 0 and it get stuck at infinity loop.

Similar questions