When a continue statement is encountered in a loop, the program control resumes from _______. 

  • next statement 
  • loop condition 
  • beginning of loop 
  • end of loop
The continue statement, when encountered inside a loop, causes the program to skip the rest of the current iteration and move directly to the loop condition to check if the next iteration should commence. In essence, it "continues" to the next iteration of the loop without finishing the current one.
Add your answer
Loading...

Leave a comment

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