CBSE Class 11 Computer Science Question 46 of 161

Flow of Control — Question 28

Back to all questions
28
Question

Question 28

Consider the loop given below :

for i in range(10, 5, -3) :
    print(i)

How many times will this loop run?

  1. 3
  2. 2 ✓
  3. 1
  4. Infinite
Answer