Computer Science
Consider the loop given below :
for i in range(7, 4, -2) :
break
What will be the final value of i after this loop ?
- 4
- 5
- 7
- -2
Related Questions
Consider the loop given below :
for i in range(10, 5, -3) : print(i)How many times will this loop run?
Consider the loop given below :
for i in range(3) : passWhat will be the final value of i after this loop ?
In for a in __________ : , the blank can be filled with
Which of the following are entry controlled loops ?