Multiple choice technology programming languages

A continue statement causes execution to skip to

  1. the next iteration of the loop

  2. the first statement after the loop

  3. the statement following the continue statement

  4. the return 0; statement

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A continue statement causes the program to skip the remaining statements in the current iteration and jump to the next iteration of the loop. It does not exit the loop (that would be break), and it does not skip to the statement following continue.