Java OCA OCP Practice Question 1067

Question

What keyword is used to proceed with execution immediately after a loop?

  • A. break
  • B. continue
  • C. end
  • D. skip


A.

Note

The break keyword is used to end the loop iteration immediately, skip any remaining executions of the loop, and resume execution immediately after the loop.

Therefore, Option A is correct.




PreviousNext

Related