Order of Divisions in COBOL program:
- IDENTIFICATION DIVISION
- ENVIRONMENT DIVISION
- DATA DIVISION
- PROCEDURE DIVISION
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.