Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the Linkage section? What is the Use and Why the
parm length use alway "PARM-LENGTH PIC S9(4) or PIC S9
(4) COMP." any reason?.Please let me know any one...

Cheers,Prasad

Answers were Sorted based on User's Feedback



What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH ..

Answer / srinivas.d

because in first two bytes it stores length.If u don't give
s9(4),then there are chances of two bytes data truncation.
Linkage section is used in main program when parm fiels is
used in jcl or in sub program when main program calls sub
program.

Is This Answer Correct ?    20 Yes 4 No

What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH ..

Answer / kavya

Linkage section is one of the section of Data
division.Linkage section is used to access external data.

With respect to length above ans is right...

Is This Answer Correct ?    8 Yes 3 No

What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH ..

Answer / rahul dev

Q) May be the question is why code lenght in COMP only not
in COMP-3 or DISPLAY type!! If somebody know plz asnwer

A) The length of linkage is stored as Binary, hence COMP.
We cannot use COMP-3 because COMP-3 stores in Packed
decimal & not in Binary.

Is This Answer Correct ?    8 Yes 3 No

What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH ..

Answer / i go crazy

S9(4) COMP uses 2 bytes. where as S9(4) COMP-3 uses 3 bytes. As COMP needs less storage at word boundaries, we use COMP.

Is This Answer Correct ?    2 Yes 2 No

What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH ..

Answer / siri

LINKAGE SECTION:- IT IS SECTION OF THE DATA DIVISION..IT IS USED TO LINK BETWEEN THE TWO SUB PROGRAMS...PASS THE VALUE FROM JCL BY PARM PARAMETER...
DECLARE THE PARM PARAMETER IN COBOL PROGRRAM
LINKAGE SECTION.
01 PARM-FIELD.
05 PARM-LENGTH PIC S9(4) COMP.
05 PARM-VALUE PIC X(6)
PROCEDURE DIVISION USING PARM-FIELD.
THE PROGRAM CAN RECEIVE THEM USING LINKAGE SECTION.THE LINKAGE SECTION MUST BE CODED WITH HALF WORD BINARY FIELD AS FIRST FIELD.THIS IS POPULATED IS POPULATED WITH LENGTH OF THE PARM PASSED FROM THE JCL.

Is This Answer Correct ?    0 Yes 0 No

What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH ..

Answer / viks

May be the question is why code lenght in COMP only not in
COMP-3 or DISPLAY type!! If somebody know plz asnwer

Is This Answer Correct ?    0 Yes 3 No

What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH ..

Answer / ramesh

could any one give better explaination.
for ex: parm='12345' in jcl
how to declare linkage section variable.
in linkage section.
01 parm
05 ls-var pic 9(05).
(or)
01 parm
05 ls-len pic s9(04) comp.
05 ls-var pic 9(05).
please explain why we hav to declare ls-len.

Is This Answer Correct ?    0 Yes 3 No

What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH ..

Answer / harish

hi,

above answers r absolutely right..........

Is This Answer Correct ?    5 Yes 9 No

Post New Answer

More COBOL Interview Questions

How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?

0 Answers  


is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon

2 Answers   Patni,


Why there is no questions in this column?

6 Answers  


What guidelines should be followed to write a structured cobol prgm?

0 Answers  


What is the difference between PIC 9.99 and 9v99 in COBOL?

0 Answers   SwanSoft Technologies,


what is ASRA, AEY9?

2 Answers   IBM,


In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?

3 Answers  


Have you used comp and comp-3 in your project? And how?

0 Answers   IBM,


What is difference between COBOL and VS COBOL II?.

1 Answers   Winsol Solutions,


how will u pass dadta to cobol+db2 program...?

4 Answers   IBM,


What is the difference between perform … with test after and perform … with test before?

0 Answers  


how do you reference the rrds file formats from cobol programs

0 Answers  


Categories