Which one of the following contains only valid PL/SQL reserved words?
-
TO_CHAR, INOUT
-
PROC, PACKAGE
-
PRAGMA, MULTI_ROW
-
SELECT, EXCEPTION
D
Correct answer
Explanation
SELECT and EXCEPTION are both valid PL/SQL reserved words. SELECT is used for querying data, and EXCEPTION is used in exception handling blocks. The other options contain invalid words: INOUT is not a reserved word (it's a parameter mode), PROC is not reserved (PROCEDURE is), and MULTI_ROW is not a PL/SQL reserved term.