Multiple choice technology mainframe

Order of Divisions in COBOL program:

  • IDENTIFICATION DIVISION
  • ENVIRONMENT DIVISION
  • DATA DIVISION
  • PROCEDURE DIVISION

  1. True

  2. False

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

COBOL programs must follow the strict division order: IDENTIFICATION (program name and documentation), ENVIRONMENT (external resources like files), DATA (variable definitions), and PROCEDURE (executable logic). This sequence is mandatory and reflects the logical flow from metadata to execution. Divisions cannot appear out of this sequence.