Multiple choice technology programming languages

The structure of simple explicit cursor is

  1. open cursor; ---some statements close;

  2. open cursor; fetch into variables; ---some statements close cursor;

  3. open cursor; fetch into variables; ---some statements close;

  4. All of the above

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

A standard explicit cursor lifecycle in PL/SQL involves opening the cursor, fetching the rows into variables within a loop, and closing the cursor. The correct option accurately reflects this sequence.