Multiple choice qn8

Parameter direction to return value from StoredProcedure?

  1. Input

  2. Return

  3. Output

  4. Extern

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Output parameters are used in stored procedures to return values to the calling program. Input parameters pass data in, Return is for status codes, and Extern is not a parameter direction.