Multiple choice technology databases

Can the default values be assigned to actual parameters?

  1. True

  2. False

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

Default values can be assigned to formal parameters in a function/procedure declaration. When the function is called without providing those arguments, the default values are used for the actual parameters. This allows optional parameters with sensible defaults. The statement refers to this common language feature.