what do you mean by copybook? and what is the difference
between the copybook which we are using in working storage
and procedure division.
Answers were Sorted based on User's Feedback
Answer / michealraj. g
There are two types of copybooks: 1. Working storage
copybook 2. Procedure division copybook
1. Working Storage copybook: It contains the input or
output fields names with the field definitions like type or
length of the fields. Instead of defining so many variables
in the WS section, we can have it in a separate file like
thing. It is also useful in mapping the I/P or O/P records
with the specific fields.
2. Procedure Division copybook: It contains set of COBOL
statements in order to execute it at a particular time. It
acts as a sub-program.
| Is This Answer Correct ? | 21 Yes | 1 No |
Answer / jeena.mj
A common piece of {source code} designed to be copied into
many source programs, used mainly in mainframe programming.
working storage copybooks contains only records which we
are using in more then one program.
procedure division copybooks contains cobol logic
statements.
mostly we use working storage copybooks.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / shan
Copy books are nothing but COBOL code which can be used in
multiple programs are written in a separate member.
By using COPY <COPY BOOK NAME> statement(COPY is a compiler
directive command), The piece of code in the copy book will
get expanded during compilation.
Mostly copy books are used to define file structures, any
variables structures,which can be defined in multiple
programs, also for some common paragraphs(Ex: Abend
paragraphs). This does not mean this is the only usage.
Even file section, for select clause also we can write a
copy books.
Any part of your COBOL program can be written into to a
separate copy book and using copy command it can be
expanded. There is no classification as working storage copy
book or procedure division copy book, If any one stands by
this classification, please let me know any books or
materials you have referred, i will also get updated.
| Is This Answer Correct ? | 11 Yes | 2 No |
88 level entry is used for (a) data items in WORKING-STORAGE SECTION (b) items with RENAMES clause (c) condition-names (d) None of the above
how many divisions are there in cobol
Sending data is aplhabetic size 7 (value 3000), I wantated this value to be stored in database, which is defined as s9(7)v9(2)comp-3.
What do you understand by passing by reference and passing by content?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
How to read the last 100 records from a COBOL file. The file contains N number of records.
tell me about examine inspect and evaluate ?
01 a pic s9(5) occupies how many bytes ?
What is the difference between PIC 9.99 and PIC9v99?
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?
How to Write the RESTART Logic Using COBOL?
4 Answers GalaxE, L&T, Syntel, TCS,
why do u need inspect verb?