The continue statement in a loop is used to skip the rest of the loop's body and continue with the next ________.

  • iteration
  • condition
  • loop
  • statement
The continue statement in a loop is used to skip the remaining part of the current iteration (loop body) and move on to the next iteration. It helps control the flow of a loop.
Add your answer
Loading...

Leave a comment

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