The break statement exits a while loop and continues executing the code that follows the loop at line number ________.

  • immediately
  • next
  • specified
  • labeled
The 'break' statement exits a while loop immediately and continues executing the code that follows the loop at the next line. It allows you to prematurely terminate a loop based on a certain condition, without completing the remaining iterations.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *