Multiple choice technology databases The life cycle of the explicit cursor goes through __________stages: Declare, Open, Close Declare, Open, Fetch, Close None Declare, Open, Fetch, Close, Remove Reveal answer Fill a bubble to check yourself B Correct answer Explanation An explicit cursor in PL/SQL has four lifecycle stages: DECLARE (define cursor), OPEN (execute query), FETCH (retrieve rows), and CLOSE (release resources). The Remove stage doesn't exist - closing is sufficient.