Multiple choice technology databases

Implicit Cursors are created by users in PL/SQL block.

  1. True

  2. False

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

Implicit cursors in Oracle PL/SQL are NOT created by users - they are automatically created and managed by the Oracle engine for SQL statements (SELECT, INSERT, UPDATE, DELETE). Users create and manage EXPLICIT cursors using the CURSOR...IS syntax and explicit OPEN, FETCH, CLOSE operations. The statement claims users create implicit cursors, which is false.