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
b, e
B E
b e
B, E
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.
CONTINUE stops the current loop and forces next iteration to take place.
B,E