Can the default values be assigned to actual parameters?
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.