COBOL Interview Questions and Answers
Freshers / Beginner level questions & answers
Ques 1. What is COBOL?
COBOL (Common Business-Oriented Language) is a high-level programming language used primarily for business, finance, and administrative systems.
Ques 2. What is the significance of the PERFORM statement?
The PERFORM statement is used for loop control in COBOL. It allows the repeated execution of a set of statements until a specified condition is met.
Example:
PERFORM 5 TIMES
DISPLAY 'Hello, World!'
END-PERFORM.
Ques 3. What is the purpose of the INITIALIZE verb?
The INITIALIZE verb is used to set the initial values for data items in COBOL. It initializes numeric items to zero and alphanumeric items to spaces.
Example:
01 COUNT PIC 9(3).
INITIALIZE COUNT.
Ques 4. What is the purpose of the FILE SECTION in COBOL?
The FILE SECTION in COBOL is used to describe the structure and attributes of files used by the program. It includes the FD (File Description) entries.
Ques 5. How does COBOL handle decimal arithmetic?
COBOL provides the COMPUTE statement for decimal arithmetic. It allows the programmer to perform arithmetic operations on numeric data items with explicit precision.
Example:
COMPUTE TOTAL = AMOUNT-1 + AMOUNT-2.
Ques 6. What is the purpose of the LEVEL number in COBOL?
The LEVEL number in COBOL is used to indicate the hierarchy and nesting level of data items. It determines the structure and organization of data in the Data Division.
Example:
01 EMPLOYEE-RECORD.
05 EMPLOYEE-ID PIC 9(5).
05 EMPLOYEE-NAME PIC X(20).
Ques 7. How is data movement done in COBOL?
Data movement in COBOL is achieved through the MOVE verb. It transfers the value of one data item to another, and it can handle various data types.
Example:
MOVE 100 TO AMOUNT.
Ques 8. How does COBOL support file processing?
COBOL supports file processing through file control entries in the File Section. The OPEN, READ, WRITE, and CLOSE statements are used for file operations.
Example:
OPEN INPUT FILE-1.
READ FILE-1 INTO DATA-RECORD.
CLOSE FILE-1.
Ques 9. What is the purpose of the SET statement in COBOL?
The SET statement in COBOL is used to assign values to index names, condition names, and other special registers. It is essential for controlling program flow.
Example:
SET EMPLOYEE-INDEX TO 1.
Ques 10. Explain the concept of the INITIALIZE verb.
The INITIALIZE verb in COBOL is used to set the initial values for data items. It initializes numeric items to zero and alphanumeric items to spaces.
Example:
01 COUNT PIC 9(3).
INITIALIZE COUNT.
Ques 11. What is the purpose of the COPY statement in COBOL?
The COPY statement in COBOL is used for including copybooks in the source code. It allows the reuse of common code and improves maintainability.
Example:
COPY 'COMMON-FILE'.
Ques 12. Explain the concept of the ACCEPT statement.
The ACCEPT statement in COBOL is used for interactive input. It allows the program to receive data directly from the user during runtime.
Example:
ACCEPT EMPLOYEE-NAME.
Ques 13. What is the role of the WORKING-STORAGE section in COBOL?
The WORKING-STORAGE section in COBOL is used to declare variables that retain their values throughout the execution of the program. It provides working storage for temporary data.
Example:
WORKING-STORAGE SECTION.
01 COUNTER PIC 9(3) VALUE 0.
Ques 14. Explain the concept of the CALL statement in COBOL.
The CALL statement in COBOL is used to invoke subprograms or procedures from other programs. It allows modular programming and code reuse.
Example:
CALL 'SUB-PROGRAM' USING PARAMETER-1 PARAMETER-2.
Ques 15. What is the role of the END-IF statement in COBOL?
The END-IF statement in COBOL marks the end of an IF statement block. It is used to indicate the conclusion of the conditional code and resume normal program flow.
Example:
IF AMOUNT > LIMIT
DISPLAY 'Amount exceeds limit'
END-IF.
Ques 16. Explain the concept of the ACCEPT FROM statement.
The ACCEPT FROM statement in COBOL is used to receive data directly from an external device, such as a keyboard. It simplifies interactive input operations.
Example:
ACCEPT WS-EMPLOYEE-ID FROM 'Enter Employee ID:'.
Ques 17. Explain the concept of the COMPUTATIONAL-3 clause.
The COMPUTATIONAL-3 (COMP-3) clause in COBOL is used to define packed-decimal data items. It represents decimal numbers in a packed format for efficient storage.
Example:
01 AMOUNT PIC 9(5) COMP-3.
Most helpful rated by users:
Related interview subjects
R Language interview questions and answers - Total 30 questions |
COBOL interview questions and answers - Total 50 questions |
Python Coding interview questions and answers - Total 20 questions |
Scala interview questions and answers - Total 48 questions |
Swift interview questions and answers - Total 49 questions |
Golang interview questions and answers - Total 30 questions |
Embedded C interview questions and answers - Total 30 questions |
C++ interview questions and answers - Total 142 questions |
VBA interview questions and answers - Total 30 questions |