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 are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?
hi friends,can any one post the ibm mainframe inteqview questions for 1year exp candidate,for itc infotech interview?. have any body attended for this in the past?...
How do you define a table/array in COBOL?
01 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
I have dataset DS1 which has records say 1 2 3 4 5 ... ... etc And also I have second dataset DS2 whcih has records 1 3 4 5 6 8 .. ... Both the files are sorted and now I want to compare these files and write it into the third files if the records are matching.
If a sub program is called from mainprogram.I have opened cursor in main program and Fetch the result in subprogram ,Is it possible ?If yes please tell me the reason.
how to display comp3 variables reply soon ?
I have two sequential files, FILE-1 and FILE-2. FILE-1 contains 2 columns(A,B) and FILE-2 contains 3 columns (C,D,E).I want an output file, FILE-3 which has all five columns with duplicates eliminated from column A.
what is the diff b/w select stsmt and cursor ?
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
1.What is the default print format in cobol?