break
continue
return
exit
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 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
None of these
It breaks out of both loops.
It only breaks out of the innermost loop.
It causes a compile-time error.
It stops the program.