Q. By using which clause, the mode is OUT, so you cannot specify a parameter mode for output bind arguments?
β
Correct Answer: (B)
RETURNING INTO Clause
Explanation: By using the USING clause the default mode is IN, so we need not specify a parameter mode for the input bind arguements. With the RETURNING INTO clause the mode is OUT so we cannot specify a parameter mode for output bind arguements.