When you want to continue to the next iteration of a loop without executing the subsequent commands in the current iteration, you use the __________ command.

  • continue
  • break
  • exit
  • return
When you want to continue to the next iteration of a loop without executing the subsequent commands in the current iteration, you use the **continue** command. It allows you to skip the current iteration and proceed to the next iteration of the loop.
Add your answer
Loading...

Leave a comment

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