Multiple choice technology databases

which of the following objects returns value?

  1. procedure

  2. trigger

  3. function

  4. all

Reveal answer Fill a bubble to check yourself
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.