When creating stored procedures and functions, which construct allows you to transfer values to
and from the calling environment?
A.
local variables
B.
arguments
C.
Boolean variables
D.
Substitution variables
Explanation:
Arguments declared in the parameter list of the subprogram are called formal parameters. The
MODE determines whether the values can be transferred to the calling environment OUT & IN
OUT or from the calling Environment IN & IN OUT.