CBSE Class 11 Computer Science Question 51 of 161

Flow of Control — Question 33

Back to all questions
33
Question

Question 33

Consider the loop given below. What will be the final value of i after the loop?

for i in range(10) :
    break
  1. 10
  2. 0 ✓
  3. Error
  4. 9
Answer