+1 vote
in Python by
Read the Following program:

i = 1:  

while True:  

    if i%3 == 0:  

        break  

    print(i)  

Which of the following is the correct output of this program?

i) 1 2 3

ii) 3 2 1

iii) 1 2

iv) Invalid syntax
...