CBSE Class 12 Computer Science Question 5 of 18

Practice Paper — Question 15

Back to all questions
15
Question

Question 15

Write the output of the following code:

for i in range(5):
    print(i)
Answer
Output
0
1
2
3
4