Which two statements are correct about the usage of parameters in functions? (Choose two.)
A.
Functions can have only in mode parameters.
B.
Functions called in SQL statements cannot have out or in outmode parameters.
C.
Functions having in, out, or in out parameters can be called only in named PL/SQL
subprograms
D.
Functions having in, out, or in out parameters can be called In PL/SQL procedures and
anonymous blocks.
b,d
B D
b d
B,D
In SQL (not PL SQL),
Functions called cannot have out or in out mode parameters.
For example: The syntax for the CONCAT function in SQL is:
CONCAT( string1, string2 )
This function can only have in parameters in SQL only, it cannot have out or in out mode parameters in SQL (not PL SQL)
B,D
B D