01 ws-p pic 9(2).
01 ws-q pic 9(2) value 01.
01 ws-r pic 9(2) value 99.
p.d.
compute p = q + r
what will be result of p ans(00) but my question is that
how i got 10 on the place of 00.
(truncation will ocuure on right side not left).
please tell me ?
Answer Posted / reddy kanupuru
u will get 00 only.
Because any numeric move will start from decimal pont
for exp : as per the given ques
compute p = q+r =100
here the decimal point is placed at the right side .
100.
so if u move that to 99 , means before point two digits
(00) will be moved .
another exp:
q = 99v99
01 r pic 99v99 value 100.345
move r to q
the value is 00v34
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is the LINKAGE SECTION used in COBOL?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
Write the code implementing the perform … varying.
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What is report-item in COBOL?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
When is inspect verb is used in cobol?
Explain the configuration section of a cobol program with examples of syntax.
Explain how to differentiate call by context by comparing it to other calls?
How many sections are there in data division in COBOL?
How do define dynamic array in cobol.
How you can characterize tables in cobol?
Explain what you understand by passing by value.
I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue