Computer Science, asked by jordanshukla50, 6 hours ago

The independent data name description in COBOL must include ​

Answers

Answered by jancymonnaiahk
1

Answer:

The independent data name description in COBOL must include

Explanation:

The independent data name description in COBOL must include

Answered by aakashvishwakarma932
1

Answer:

IDENTIFICATION DIVISION.

The PROGRAM-ID should be an eight character descriptive name of the program.

The AUTHOR must be the name of the student.

The date must include DATE-WRITTEN and DATE-COMPILED.

There must be remarks divided into specific paragraphs as indicated. The paragraph titles should be displayed in column twelve with the rest of the paragraph indented for clarity.

FUNCTION. Briefly state the function of the program.

INPUT FILES. List the internal name for each file used as input, followed by its disk file name and the sort sequence (if any) of the file.

OUTPUT FILES. List the internal name for each file used for output, followed by its disk file name and the sort sequence (if any) of the file.

PRINTER OUTPUT. Describe briefly each report generated by this program, including information about control breaks.

INTERFACE PROGRAMS. (FOR COURSES BEYOND COP 2120...) List the names (Program-Ids) of the programs called as well as cite the programs that call this subprogram.

ENVIRONMENT DIVISION.

INPUT-OUTPUT SECTION. Select files by the order in which they are used.

DATA DIVISION.

Insert a blank line before each 01 level number.

Level numbers.

Use non-contiguous level numbers in increments of five (05, 10, 15).

Indent each higher level number four columns to the right.

PICTURE clause.

PICTURE clauses must be vertically aligned in the program.

The PICTURE of a data item should agree with its primary usage. It should be alphanumeric unless used for computation, subscription or editing.

VALUE clauses must be vertically aligned in the program.

FILE SECTION.

Similar questions