Which type of argument passes a value from a procedure to the calling environment?
A.
VARCHAR2
B.
BOOLEAN
C.
OUT
D.
IN
Explanation:
Parameters that are defined with an OUT mode the parameter will pass their value from the
procedure back to the calling environment.
Incorrect Answers:
A: This is a DataType not a parameter
B: This is a DataType not a parameter
D: When a parameter is defined with an IN mode, the parameter will only accept input from the
calling environment.