What is the use of LINKAGE SECTION?
Answer / sreedhar
Linkage section is a part of data division.
This can be coded in 2 situations
1) When we want to pass data from Jcl to COBOL program using parm parameter.
2) when mainprogram communicates with sub program then we code linkage section in sub program
| Is This Answer Correct ? | 0 Yes | 0 No |
What are various search techniques in cobol? Explain.
What is the difference between perform … with test after and perform … with test before?
COBOL program to read the string ' BOMBAY' in reverse order as 'YABMOB'
How to define a array dynamically.....
What is perform what is varying?
77 I pic 99 value 5 Perorm para-A I times. Para -A. move 10 to I. How many times the para-A will be executed.?
How to read a record from bottom of a file which is indexed by 'A'.
Suppose, file A has 100 records and file B has 500 records. We want to write records common to both A and B into file C and records which are present only in either A or B into another file D. What should be the logic of Cobol program to achieve this?
7 Answers Bank Of America, Mind Tree,
What is an explicit scope terminator?
what happens if we wont give timestamp in precompilation process ?
When we code these comp,comp1,comp-2,comp-3 and comp4 values. I know the differnece.I mean when we will prefer if it is new program.Explain in detail with memory examples. Thanks in advance.
have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..