Multiple choice technology mainframe

What else can we code instead of STOP RUN in a stand-alone COBOL program to have the same functionality

  1. FINISH

  2. GO BACK

  3. STOP

  4. EXIT

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

In COBOL, the GOBACK statement is the preferred alternative to STOP RUN in stand-alone programs. GOBACK returns control to the caller and closes all files, achieving the same functionality as STOP RUN. FINISH, STOP (without RUN), and EXIT are not valid COBOL statements for program termination.