Q. The values of any IN OUT parameters are copied before the subprogram is executed.
β
Correct Answer: (A)
Yes
Explanation: The IN OUT parameters are passed by values by default. During the subprogram execution the temporary variables hold the output parameter values. If the program is normal the values are copied to the actual parameters. If the program exits with an unhandled exception the original parameters remain unchanged.