What is the linkage section?
Answers were Sorted based on User's Feedback
Answer / aji cherian
Linkage section will be in the subprogram. This can be used
to pass parameters.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / shubha
this is one of the section under data division, and is used
in sub programs to pass the parameters.this section also
receives parameter from jcl
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vampire
Linkage section is subprogram
it will be coded in data division
use to pass values from one program to another
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vidhya
Linkage section is used to pass values from one program to
another.For example in CICS programs, linkage section is
used to code the DFHCOMMAREA where we recieve values from
another program.
| Is This Answer Correct ? | 0 Yes | 0 No |
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
can we use go to statement inline-perform?
TYPES OF SORTINGS. which is more prefarable.
CAN ANY ONE HELP WHAT IS QTP? why it is nessery AND WEN IT IS USED?
what is sync clause?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
what is the default print format? in cobol
What does the IS NUMERIC clause establish ?
How can I tell if a module is being called DYNAMICALLY or STATICALLY?
. How do we cast a variable in COBOL
If you are current on the owner of a set, what is the difference between obtain next and obtain first?