+1 vote
in Python by

Read the Following program:

i = 0  

while i < 3:  

    print(i)  

    i += 1  

else:  

    print(0)  

What will be the output of this statement?

i) 0 1

ii) 0 1 2

iii) 0 1 2 0

iv) 0 1 2 3

Related questions

+2 votes
asked Jan 21, 2021 in C Plus Plus by SakshiSharma
+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
...