what is the purpose of linkage section?
Answers were Sorted based on User's Feedback
Answer / ananta bajpai
it is the section of data division. it is used for linking
two cobol sub-programes(call calling )as well as passing
the value from jcl by parm parameter.
| Is This Answer Correct ? | 34 Yes | 2 No |
Answer / srinivas adilapuram
Linkage section is used to define any data passed across
programs.
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / sivakumar sekharannair
i feel Anantha's answer sounds good. Linkage section is
used to pass data between programs and also between jcl and
program.
| Is This Answer Correct ? | 8 Yes | 4 No |
Answer / suresh
linkage-section is used to define the storage that is to be
passed between the programs.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / pooja
Linkage- section is used to access the data which is sent
from external program. JCL can send maximum 100 characters
to a program thru PARM.
| Is This Answer Correct ? | 3 Yes | 0 No |
linkage section is used to pass the data from jcl to
application program. by using parm parameter we can send max
100 characters to the application program. if we mention
the parm parameter we have to define the linkage section.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / arun
Linkage Section is used to transfer the control between the sub-programs( calling and called)and also to Pass the value from JCL using PARM
| Is This Answer Correct ? | 1 Yes | 1 No |
How can we find out wether to declare the data items like Integer, Char,Comp? If comp types how can we decide wether it is Comp and Comp3.How it is? Please Explain... Cheers.
what is record label is empty or standard in file description of data division?
The below is the declaration for a variable ws 01 ws pic 9(3). if you want to insert space how will you do that. in which level u should do it
What is a subscript ?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
given the following piece of code: CALL SUB-PGM USING A, B, C. CALL SUB-PGM USING A, C, C. (a) Both CALL statements will always produce same result. (d) Both CALL statements may produce different result. (c) Compile-time error because SUB-PGM is a dataname. (d) Compile-time error because A, B, C are used twice.
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?
What is the reference modification.
What are the different open modes available in cobol?
What is the use of EVALUATE statement?
how do you reference the fixed unblock file formats from cobol programs
Explain Restart Logic in Cobol?