Multiple choice technology mainframe

FETCH causes the currently active module and all lower level modules to terminate and control to pass to the “fetched” program.

  1. True

  2. False

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

FETCH terminates the current program module and all its lower-level modules, then transfers control to the specified program. It's a hard termination and transfer - unlike CALL which returns control. This makes FETCH useful for chaining programs permanently without returning to the caller.