Answer Posted / pal
PIC 9.99 occupy 4 bytes
PIC 9v99 occupy 3 bytes
ex.
A PIC 9.99 VALUE 1.11
B PIC 9v99 VALUE 2.22
display A,B
RESULT
A=1.11
B=2v22
| Is This Answer Correct ? | 11 Yes | 44 No |
Post New Answer View All Answers
What are declaratives and what are their uses in cobol?
What is the difference between binary search and sequential search?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
Can a Search can be done on a table with or without Index?
When is inspect verb is used in cobol?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
What are 77 levels used for?
What is the difference between perform … with test after and perform … with test before?
Which mode is used to operate the sequential file?
What is the difference between PIC 9.99 and PIC9v99?
What is inspect in cobol ?
What are the pertinent COBOL commands?
What is perform what is varying?
What is rmode(24)
I have a File that has duplicate records. I need only those records that occur more than thrice.?