Multiple choice technology programming languages A continue statement causes execution to skip to the next iteration of the loop the first statement after the loop the statement following the continue statement 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.