break
continue
return
None of these
goto
All of the above
exit
Both (a) and (b)
do-while
if-else
for
while
None of the mentioned
do while
switch
TRUE
FALSE
;
:
,
=
Continue
Break
Return
None of the above
resume
skip
continue statement
break statement
switch statement
if statement
It exits the current loop and continues with the next iteration
It terminates the current loop and transfers control to the next statement after the loop
It skips the current iteration and moves to the next iteration
It repeats the current iteration
break stops the loop, continue skips the rest of the iteration
Both stop the loop
break skips to the next iteration, continue exits the loop
Both skip to the next iteration
It breaks out of both loops.
It only breaks out of the innermost loop.
It causes a compile-time error.
It stops the program.