What are the types of cursors available in plsql?
-
user defined
-
implied
-
implicit and explicit
-
Implied and user defined
C
Correct answer
Explanation
PL/SQL has two types of cursors: implicit cursors (automatically created by Oracle for SQL statements like SELECT) and explicit cursors (declared and managed by the programmer for finer control over row processing). The terminology is 'implicit' and 'explicit', not 'implied' or 'user defined'.