Cobol

COBOL is a compiled English-like computer programming language designed for business use. COBOL is primarily used in business, finance, and administrative systems for companies and governments.

PERFORM statement in COBOL Program

PERFORM statement transfers control to a block of code that will be executed just once. This could either be a…

4 years ago

COBOL MERGE statement with Examples

The COBOL MERGE statement combines two or more identically sequenced files on a set of specified keys.  As part of…

4 years ago

COBOL SORT statement with Examples

COBOL SORT files are common functionalities of COBOL applications. Sorting is required for sequential processing as the files need to…

4 years ago

OUTER JOIN – step by step walkthrough with examples

The JOIN operation allows you to combine rows from two or more tables based on a related column. OUTER JOIN…

4 years ago

Conditional Expressions use in COBOL

Conditional expressions identify conditions that are tested to enable the object program to select between alternate paths of control depending…

4 years ago

EVALUATE statement in COBOL Programs

EVALUATE statement is used for conditional processing which helps in eliminating a series of nested IF statements to test several…

4 years ago

Find Duration – Add – Subtract – MOD Duration using COBOL

The FIND DURATION function is used to calculate duration between: Two dates A date and a timestamp Two times A…

4 years ago

File Handling Verbs in COBOL Programs

The collection of records belonging to the same entity is known as File. These records are stored permanently. File handling helps to organize…

4 years ago

FILE ALLOCATION – COBOL File Handling

FILE ALLOCATION is a key concept in COBOL programming. A file is a collection of data related to a set…

4 years ago

COBOL File Error Handling and Status Code

Any I-O operations on a file, there are chances that it may fail. We need to have COBOL FIle Error…

4 years ago