Sequence Programming Construction in COBOL Last Updated : 28 Apr, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report COBOL (Common Business-Oriented Language) supports sequence programming construction through the use of sections, paragraphs, and sentences. A section is a group of paragraphs, a paragraph is a group of one or more sentences, and a sentence is a single statement. The structure of a COBOL program typically includes the identification division, environment division, data division, procedure division, and the optional report writer section. The procedure division contains the sequence of instructions that make up the program's logic and is where the sections, paragraphs, and sentences are defined and used to organize and structure the program. Control structures such as IF, ELSE, PERFORM, and EVALUATE are also available for controlling the flow of execution within the program. Sequence Programming Construction in COBOLCOBOL does not have a specific sequence execution command. Instead, the sequence of instructions in a COBOL program is determined by the order in which the program's statements are written in the procedure division. The COBOL compiler reads and interprets the statements in the procedure division in the order in which they are written, and executes them sequentially unless a control structure is used to alter the flow of execution. For example, a PERFORM statement can be used to execute a specific section of the program repeatedly or a conditional IF statement can be used to execute specific statements only if a certain condition is met. Overall, the order in which statements are written and the use of control structures are the primary means of controlling the sequence of execution in a COBOL program. Example 1: Cobol IDENTIFICATION DIVISION. PROGRAM-ID. GFG. ENVIRONMENT DIVISION. DATA DIVISION. PROCEDURE DIVISION. PROGRAM-BEGIN. DISPLAY "GEEKS FOR GEEKS". PROGRAM-DONE. STOP RUN.  Comment More infoAdvertise with us Next Article Coding Sheet in COBOL S surajshankar65 Follow Improve Article Tags : COBOL COBOL-Basics Similar Reads Programming Construction in COBOL COBOL is a compiled, imperative, procedural programming language designed for business use. It can handle very large numbers and strings. COBOL is still in use today because it's robust, with an established code base supporting sprawling enterprise-wide programs. Learning to program in COBOL will se 5 min read Program Structure of COBOL COBOL is a programming language that was developed to solve business problems. COBOL stands for Common Business Oriented Language. Being a High-Level Structured Language, COBOL is very similar to English-like language, which is used to develop major business applications. Due to its easier maintenan 2 min read Conditional Statements in COBOL While writing a program a programmer needs to check for various conditions, if the condition is true then a particular block of statement/s are executed, or else another block of statement/s is execute. To check these conditions we use Conditional Statements. These statements return either true or f 7 min read Coding Sheet in COBOL Every language needs an environment or platform to write codes. For example, in Java, we use notepad to write codes then compile them to run. Similarly, COBOL requires a coding sheet to write codes. COBOL is a business-oriented high-level language. It was developed for business, finance, and adminis 7 min read Working Storage Section in COBOL Cobol is a high-level language, which has its own compiler. The COBOL compiler translates the COBOL program into an object program, which is finally executed. To execute the COBOL program without any error, these divisions must be written in the order in which they are specified below: 1. Identific 3 min read Display Computation in COBOL DISPLAY is the most common form of internal data representation. DISPLAY stores in decimal form. Each character of the data will represent one byte of storage. If there is no usage clause for data items, then by default it will come under DISPLAY. DISPLAY can be used for all types namely Numeric da 2 min read Like