1.
Q1: Given the following code segment:
x = 1
while ___:
if x % 2 == 0:
print(x)
x = x + 2
Consider the following conditions to replace
___
in the code segment:
For which of the conditions will nothing be printed?
- I only
- II only
- I and II only
- I and III only
- I, II and III