Which statement is used to skip the remainder of the code inside the current loop iteration and move to the next iteration?

  • continue
  • jump
  • pass
  • skip
The 'continue' statement is used to skip the remaining code inside the current loop iteration and move to the next iteration of the loop. It allows you to bypass specific conditions or processing in the loop.
Add your answer
Loading...

Leave a comment

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