Multiple choice technology programming languages

The default mode of parameters that can be passes to a procedure?

  1. IN

  2. OUT

  3. OUTIN

  4. INOUT

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

The default parameter mode in PL/SQL and similar languages is IN, meaning parameters are input-only by default. If you want a parameter to return values, you must explicitly specify OUT or INOUT. This default behavior prevents unintended modifications of parameter values.