In nested loops, the break statement, if present within a nested if the structure, will exit the _______

In nested loops, the break statement, if present within a nested if the structure, will exit the _______ Correct Answer Entire loop

The break statement will exit the loop where the break statement is present. It won’t take control out of the external loop.

Related Questions

In nested loops, the continue statement, if present within a nested if structure, will exit the ____________
In nested loops, the break statement exits the ____ loop.