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...


Parm value passed is PARM=(10,20). how do code linkage
section and how would you add these two passes values and
show result in cobol program.

Answers were Sorted based on User's Feedback



Parm value passed is PARM=(10,20). how do code linkage section and how would you add these two pas..

Answer / vaneesh khurana

LINKEAGE SECTION
01 WS-LINKEAGE SECTION.
05 WS-LINK-LENGTH PIC X(2).
05 WS-A PIC 9(2).
05 FILLER PIC X.
05 WS-B PIC 9(2).
PROCEDURE DIVISION USING WS-LINKEAGE-SECTION.

COMPUTE WS-B = WS-A + WS+B
DISAPLAY WS-B.

STOP-RUN.

Is This Answer Correct ?    5 Yes 2 No

Parm value passed is PARM=(10,20). how do code linkage section and how would you add these two pas..

Answer / raghvendra

LINKEAGE SECTION
01 WS-LINKEAGE SECTION.
05 WS-LINK-LENGTH PIC s9(4)comp.
05 WS-A PIC 9(2).
05 FILLER PIC X.
05 WS-B PIC 9(2).
PROCEDURE DIVISION USING WS-LINKEAGE-SECTION.

COMPUTE WS-B = WS-A + WS+B
DISAPLAY WS-B.

STOP-RUN.

Is This Answer Correct ?    3 Yes 1 No

Parm value passed is PARM=(10,20). how do code linkage section and how would you add these two pas..

Answer / sreenivaas

procedure division using a b.
add a to b.
display b.

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More DB2 Interview Questions

If a table has a column "dept" (declared to have nulls) and there are 10 rows in the table of which 3 have a null value in the dept column, what will select count(*) and select count(distinct dept) return?

6 Answers  


How do I delete a table in db2?

0 Answers  


What is meant by repeatable read?

4 Answers  


I need to view the number of tables existing under one particular Owner. Is it possible? If so, pl give the SQL query for this?

2 Answers  


How to create a table using embedded sql?

1 Answers  


how to resolve -818 error. how to see timestamp token in load module and plan

4 Answers   IBM,


What is load utility in db2?

0 Answers  


What is the picture clause of null indicator variable?

0 Answers  


What is EXPLAIN?

1 Answers  


Mention and explain the contention situations caused by locks?

1 Answers  


What is read-only cursor?

1 Answers  


What is the difference between cursor stability and repeatable read isolation levels?

0 Answers  


Categories