Which two statements are true about the continue statement?

Which two statements are true about the continue statement? (Choose two.)

Which two statements are true about the continue statement? (Choose two.)

A.
The PL/SQL block execution terminates immediately.

B.
The CONTINUE statement cannot appearoutside a loop.

C.
The loop completes immediately and control passes to the statement after end loop.

D.
The statements after the continue statement in the iteration are executed before terminating the
LOOP.

E.
The current iteration of the loop completes immediately and control passes to the next iteration
of the loop



Leave a Reply 7

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


Alisa

Alisa

E is correct.
The current iteration of loop ends immediately, and control passes to the next iteration
of loop.

CONTINUE forces next iteration to take place.

Alisa

Alisa

CONTINUE stops the current loop and forces next iteration to take place.