Report Bug
Qus : What is the difference between break and continue statements in loops?
QusWhat is the difference between break and continue statements in loops?

A. break stops the loop, continue skips the rest of the iteration
B. Both stop the loop
C. break skips to the next iteration, continue exits the loop
D. Both skip to the next iteration


Solution
A. break stops the loop, continue skips the rest of the iteration






Report Bug