Multiple choice technology mainframe

What is the statement that should be used to stop the execution of COBOL program?

  1. EXIT

  2. STOP

  3. STOP RUN

  4. None of the above

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

In COBOL, 'STOP RUN' is the statement used to terminate program execution and return control to the operating system. 'EXIT' is not a valid COBOL verb for program termination, and 'STOP' alone is incomplete. The 'STOP RUN' statement is the standard method to end a COBOL program gracefully.