Multiple choice

Which of the following is NOT a valid loop in PL/SQL?

  1. For loop.. end loop

  2. loop..end loop

  3. While loop.. end loop

  4. Do while loop..end loop

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

There is no 'Do while' loop in PL/SQL. To write conditional loops, we can either use the 'simple' or the 'while' loop.