Multiple choice technology databases Implicit cursors, process ... Choose all that apply All INSERT statements All DELETE statements All UPDATE statements Single row SELECT statements Multiple row SELECT statements Zero row SELECT statements Reveal answer Fill a bubble to check yourself A,B,C,D Correct answer Explanation Implicit cursors are automatically created by PL/SQL for all single-row DML operations (INSERT, UPDATE, DELETE) and single-row SELECT...INTO statements. Multi-row SELECT statements require explicit cursors with loops to process multiple rows.