Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
Prints a simple customer report with ID and name.
IDENTIFICATION DIVISION.
PROGRAM-ID. CUSTOMER-REPORT.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 CUSTOMER-ID PIC 9(5) VALUE 10001.
01 CUSTOMER-NAME PIC A(20) VALUE 'John Smith'.
PROCEDURE DIVISION.
DISPLAY 'Customer ID: ' CUSTOMER-ID.
DISPLAY 'Customer Name: ' CUSTOMER-NAME.
STOP RUN.COBOL Variants refer to the different dialects and implementations of COBOL (Common Business-Oriented Language), a legacy programming language widely used in business, finance, and administrative systems.
Origin & Creator
Developed in 1959 by a consortium including CODASYL and led by Grace Hopper to provide a standardized business programming language.
Industrial Note
Extensively used in banking, insurance, government payroll systems, and mainframe applications where decades-old COBOL systems still operate mission-critical workloads.