In standard COBOL, which is based on English and designed for business applications, programs are structured into four sections referred to as divisions. They are:
IDENTIFICATION DIVISION: names the program and contains optional information to identify the author, when it was written, and its function.
ENVIRONMENT DIVISION: identifies and describes the files used by the program.
DATA DIVISION: explicitly describes each data control.
PROCEDURE DIVISION: contains the executable program statements.