What is the LINKAGE SECTION used for?
Answers were Sorted based on User's Feedback
Answer / shiva
1.IS USED TO DECLARE FIELDS TO PASS DATA FRM JCL TO COBOL
2.IS USED TO DECLARE FIELDS TO PASSS DATA BTWN PROGRAMS
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / anil prajapati
this section is used for passing values from calling
program to main pogram and vice versa
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / abhishek
LINKAGE SECTION IS USED FOR LINKING A MAIN PROGRAM TO
SUBPROGRAM.....
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / venkatachalam
Sharing the memory location between called program and
calling program.
| Is This Answer Correct ? | 1 Yes | 1 No |
what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.
how to display date in reverse order if the pic clause of the is numeric suppose date is 09032010 ==> need to print in 20100309 (pic clause is numeric)
Why there is no questions in this column?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
what is rediffine clause?in what situation it can use?give me real time example?
give the examples for strings and unstrings in cobol
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
How to execute a set of JCL statements from a COBOL program?
what is srange and nosrange pls reply to ths question ?
What is the maximum data length for Numeric DataType ?
in cobol main pgm is calling sub pgm but sub pgm does not exists , what abend i get if submit the job?