Oracle Database 11g: Program with PL/SQL — Question 40

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

Answer options

Correct answer: B, E

Explanation

Option B is correct because the CONTINUE statement must be used within a loop context. Option E is also correct since the continue statement causes the current iteration to end and the next iteration of the loop to begin immediately. Options A, C, and D are incorrect because they misrepresent how the CONTINUE statement functions within a loop structure.