Report Bug
Qus : What is the role of the break statement in a loop?
QusWhat is the role of the break statement in a loop?

A. It exits the current loop and continues with the next iteration
B. It terminates the current loop and transfers control to the next statement after the loop
C. It skips the current iteration and moves to the next iteration
D. It repeats the current iteration


Solution
B. It terminates the current loop and transfers control to the next statement after the loop






Report Bug