Computer Science
Consider the loop given below. What will be the final value of i after the loop?
for i in range(10) :
break
- 10
- 0
- Error
- 9
Consider the loop given below. What will be the final value of i after the loop?
for i in range(10) :
break