Select correct type of parameter mode used in oracle
-
IN
-
OUT
-
IN OUT
-
All of the above
D
Correct answer
Explanation
Oracle procedures support three parameter modes: IN (read-only input), OUT (write-only output), and IN OUT (read-write input/output). These modes define how parameters can be modified within the procedure. All three modes are valid and commonly used in PL/SQL.