What is the difference between working storage copybook and
linkage section copybook?
Answers were Sorted based on User's Feedback
Answer / vinod
working storage copy book is temporal feilds and assign them
in dynamically on execution and where as linkage storage
copy book is to store permanent memory to related called sub
programs at its assigns the feild statically on before
passing the main program.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ssampath
working storage is local and linkage is global
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nag(igate)
The working storage fields are used for the program to run
first time, whereas the Linkage section fields are used to
run the program more than once.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / karthik
Working storage copybook will get expanded during
compilation whereas linkage section copy book will get
expanded during translation. This is with respect to cics-
cobol program. The copybook EIBBlock gets included while
translation
| Is This Answer Correct ? | 6 Yes | 7 No |
Answer / guest
Those data's that are declared in the WS-Section in main
program should be declared in the linkage section in the sub
or called program.
| Is This Answer Correct ? | 0 Yes | 7 No |
what is the difference between Normal vaiable and comp variable.
What is difference between COBOL and VS COBOL II?.
Name the divisions in a COBOL program ?
diffrence between z(2) and z9(2)
BY seeing a program how can we say that it is static call or dynamic call
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
wht is load module and object module ?
i have a file which contains records like 10,30,90,50,20,40,80,60,70 i want to display these records in reverse order like 70,60,80,40,20,50,90,30,10 please give me the cobol code (do not sort the records)
3 Answers Cap Gemini, Mind Tree,
How to find How Many Lines in Sysin DD * Parameter Thru Cobol Coding? If any one knows the Answer Please Reply .....Thanks From Shree
What is link edit in cobol?
what happens if we dont close cursor in db2-cobol pgm?
Wat is the difference between NEXT and CONTINUE statement in cobol,can any one explain with example.