Computer Science
Which of the following are jump statements ?
- if
- break
- while
- continue
Python Control Flow
7 Likes
Answer
break
continue
Answered By
1 Like
Related Questions
- Consider the loop given below. What will be the final value of i after the loop? - for i in range(10) : break
- The else statement can be a part of .......... statement in Python.
- Consider the following code segment : - for i in range(2, 4): print(i)- What values(s) are printed when it executes? 
- When the following code runs, how many times is the line "x = x * 2" executed? - x = 1 while ( x < 20 ): x = x * 2