Multiple choice technology databases

Identify the ITERATIVE control constructs in PL/SQL. Choose all that apply

  1. Cursors

  2. Cursor For Loop

  3. Simple Loop

  4. Exit Loop

  5. Numeric For Loop

  6. While Loop

Reveal answer Fill a bubble to check yourself
B,C,E,F Correct answer
Explanation

PL/SQL iterative control constructs include Cursor For Loop (iterates over cursor rows), Simple Loop (basic LOOP with EXIT), Numeric For Loop (iterates over number range), and While Loop (condition-based iteration). Cursors themselves aren't loops, and Exit Loop isn't a standalone construct.