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
how do you reference the fixed unblock file formats from cobol programs
How do u write test cases?
In which area will you utilize 88 level items in cobol?
What is the LINKAGE SECTION used in COBOL?
What is the utilization of copybook in cobol?
What is the difference between structured cobol programming and object alternativelyiented cobol?
Why would you use find and get rather than to obtain?
What is static and dynamic call in cobol?
What is rmode(24)
How you can characterize tables in cobol?
What are all the divisions of a COBOL program?
What is amode(24)?
Why occurs cannot be used in 01 level in COBOL?
Which division and paragraphs are mandatory for a COBOL program?
For rewrite, why is it mandatory that file needs to be opened?