How will 128 be saved in s9 (3) comp-3
How will 12 be saved in s9 (2) comp
Answers were Sorted based on User's Feedback
Answer / sriram
for comp-3 will store data in packed decimal format
s9(3)comp-3
0.5+1.5=2 bytes,
for 128 it will store c128 or f128.
for comp will store data in binary format
s9(2) will occupy 2 bytes
for 12 it will store binary format i.e 12=1100
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / kavithachandrashekar
comp-3 is stored as (n+1)/2 where n is number of digits.Since here n is 3 for numeric 128,(3+1)/2=2 bytes.
12 8C here c represents positive(D for negative)
Comp is stored as n/2,where n is number of digits.Since n is 2 for numeric 12,(2)/2=1 byte(1/2 word)
12 is saved as 12.
| Is This Answer Correct ? | 7 Yes | 7 No |
Answer / manohar reddy .d
n=128 it is a even number thaty (128/2)+1 65 in comp3
in comp s9(12) 8bytes it occupies
| Is This Answer Correct ? | 2 Yes | 28 No |
whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumeric please reply ASAP?
WHAT IS SOC3?HOW IT CAN BE RESOLVED?
what will happen if pass values more than 100 using PARM parameter?
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
file status 00 is checked after opening the file or reading the file
I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..
For rewrite, why is it mandatory that file needs to be opened?
What is file status 39 ?
what is Reentrancy and Quasi-reentrancy?
What is the difference between a binary search and a sequential search?
Have you code any new programs in COBOL ? What is the functionality of the programs?
) what is the difference between AID and HANDLE AID?