Computer Science for IGCSE & O level - Programming (Section 6 - No. 22)

What is the purpose of a `break` statement within a loop in most programming languages?
To start the next iteration of the loop.
To exit the loop prematurely.
To skip the current iteration of the loop.
To define the loop's condition.

Explanation

The `break` statement immediately exits the loop.

Comments (0)

Advertisement