which of the following objects returns value?
-
procedure
-
trigger
-
function
-
all
C
Correct answer
Explanation
Functions are specifically designed to return values in PL/SQL. Procedures perform actions but don't return values directly (they can use OUT parameters). Triggers are event-driven and execute implicitly when an event occurs - they don't return values.