Multiple choice technology mainframe

Any changes to the COMMAREA in the linked program, will be available to the linking program after RETURN a. False b. True

  1. A

  2. B

  3. Can't say

  4. Depends on situations.

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

When a program is LINKed, it shares the same COMMAREA. Any modifications made to the COMMAREA contents in the called program are visible to the calling program after control returns. This is because COMMAREA is passed by reference, not copied. Therefore, changes propagate back to the linking program.