In nested loops, the break statement exits the ____ loop.

In nested loops, the break statement exits the ____ loop. Correct Answer last started ongoing

The break statement exits the loop in which it is only called. It doesn’t care about the remaining number of iterations in the loop but it only exits from the inner loop and the control still remains in the outer loop.

Related Questions

In nested loops, the break statement, if present within a nested if the structure, will exit the _______
In nested loops, the continue statement exits the ____
In nested loops, the continue statement, if present within a nested if structure, will exit the ____________
How do we break from an infinite loop without keeping a break statement within the loop?