Multiple choice technology databases

What is the default mode for arguments in stored procedure?

  1. IN

  2. OUT

  3. IN OUT

  4. OUT IN

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

IN is the default parameter mode in stored procedures. IN parameters pass values into the procedure but cannot be modified within the procedure body. OUT and IN OUT are explicit modes that must be declared when parameters need to return values to the caller.