can i anyone tell me how to use copybooks in cobol



can i anyone tell me how to use copybooks in cobol..

Answer / surya

In DATA DIVISION, under WORK-STORAGE SECTION, we can mention the copy book. Please find the example below.

COPYBOOK "WRKRCD" having the below statements.
01 WORK-RECORD.
05 NAME-FIELD PIC X(1).
05 FILLER PIC X(1) VALUE SPACE.
05 RECORD-NO PIC S9(3).
05 FILLER PIC X(1) VALUE SPACE.
05 LOCATION PIC A(3) VALUE "NYC".
05 FILLER PIC X(1) VALUE SPACE.
05 NO-OF-DEPENDENTS PIC X(2).
05 FILLER PIC X(7) VALUE SPACES.

In program we can mention like below

DATA DIVISION.
WORKING-STORAGE SECTION.
COPY WRKRCD.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More COBOL400 Interview Questions

how array can be declare in cobol?

6 Answers  


Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?

0 Answers  


Explain the types of perform?

0 Answers  


01 A PIC 9. 01 B PIC 99V1. 01 C PIC 99. MOVE 1 TO A. MOVE 0.2 TO B. COMPUTE C ROUNDED TO 3/3 + A.

2 Answers  


Define perform?

0 Answers  






What is perform?

0 Answers  


What is sort?

0 Answers  


what is PERFORM? and its types?

7 Answers  


Explain the input procedure?

0 Answers  


Code how to read 5th element of the array?

2 Answers   CGI,


Explain the syntax of redefine?

0 Answers  


what is redefine and its syntax?

6 Answers   HCL,


Categories