there are two additional statements that can be used to control the operation of while loops and for loops: the branch and continue statements.

Respuesta :

There are two additional statements that can be used to control the operation of while loops and for loops the break and continue statements.

The break statement terminates the execution of a loop and passes control to the next statement after the end of the loop, and the continue statement terminates the current pass through the loop and returns control to the top of the loop.

The processing of a specific case within a switch statement is typically ended using the break statement. An error results from the absence of an enclosed switch or iterative expression.

A break statement in a nested loop only terminates the loop it is included in. As a result, even if the inner loop is broken, the outer loop keeps going. The looping ends completely, though, if the break is positioned in the outer loop.

Learn more about to  while loops and for loops visit here:

https://brainly.com/question/15690925

#SPJ4