Multiple choice technology mainframe

Which Statement is used to End the COBOL Program?

  1. End

  2. Stop Run

  3. Stop

  4. End-If

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

STOP RUN is the COBOL statement that terminates program execution. It closes all files and returns control to the operating system. END is used to end procedures (like END-EVALUATE), not programs. STOP alone is incorrect. END-IF terminates an IF statement block, not the program.