What is the output of the following program:
i = 0
while i < 3:
print (i)
i=i+1
print (i+1)
Qus
निम्नलिखित प्रोग्राम का आउटपुट क्या है:
i = 0 while i < 3: print (i) i=i+1 print (i+1)
A. 0 2 1 3 2 4
B. 0 1 2 3 4 5
C. Infinite loop
D. 0 1 2 3