A continue statement makes the execution jump to ______________.
Answer options
A
the end of the loop
B
the statement just after continue
C
the first statement of the loop
D
the next iteration of the loop
Correct answer: the next iteration of the loop
Explanation
Quick AnswerThe correct answer is the next iteration of the loop because it directly addresses the core logic of Java Programming.
Correct answer: the next iteration of the loop.