Answer Posted / 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 |
Post New Answer View All Answers
What is the local-storage section?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What is the usage of comp fields in cobol?
) How do u handle errors in BMS macro?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
State the various causes of s0c1, s0c5 and s0c7.
What is inspect in cobol ?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
Write some characteristics of cobol as means of business language.
What is the difference between Global and External Variables?
example for sub strings ? and refernce modifications whit output pls
What is the compute verb? How is it used?
What are the different types of condition in cobol and write their forms.
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.