Multiple choice The break statement causes an exit only from the innermost loop only from the innermost switch from the innermost loop or switch from all loops or switches Reveal answer Fill a bubble to check yourself C Correct answer Explanation The 'break' statement is used to terminate the execution of the nearest enclosing loop (for, while, do-while) or switch statement. It does not exit nested loops or switches beyond the immediate one.