Multiple Choice
What is the output of the following program :
I = 0
While i < 5:
Print(i)
I += 1
If i == 3:
Break
Else:
Print(0)
A) 0 1 2 0
B) 0 1 2
C) Error
D) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q31: What is the output of the following
Q32: Which module in Python supports regular expressions?<br>A)re<br>B)regex<br>C)pyregex<br>D)None
Q33: What is the output of the following?<br>Elements
Q34: Program code making use of a given
Q35: What is the output of the following
Q37: What is the output of the following
Q38: What is the output of the following?<br>Def
Q39: What is the output of the following
Q40: What is the length of sys.argv?<br>A)number of
Q41: What is the output of the following