What would a programmer use to stop a while-looping sequence and return to the beginning of the statement?

a break statement

a final statement
a continue statement

an exit statement

Respuesta :

Answer:

Break

Explanation:

Break, in most languages exits the current loop when reached.

Answer:

a continue statement