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
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 |
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 |
Answer / sreenivaas
procedure division using a b.
add a to b.
display b.
| Is This Answer Correct ? | 0 Yes | 6 No |
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?
How do I delete a table in db2?
What is meant by repeatable read?
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?
How to create a table using embedded sql?
how to resolve -818 error. how to see timestamp token in load module and plan
What is load utility in db2?
What is the picture clause of null indicator variable?
What is EXPLAIN?
Mention and explain the contention situations caused by locks?
What is read-only cursor?
What is the difference between cursor stability and repeatable read isolation levels?