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 |
A cobol program to read a file , match it with other if. If match occurs then write it to an output file. If no match then no need to write it.Error log created by program to track any error.
How do you reference the following file formats from cobol programs?
using redefine can you redefine lower variable size to higher variable size?
Write a program that uses move corresponding.
How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?
What is a subscript ?
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 ?
Are you comfortable in cobol or jcl?
What are the different rules for performing sort operation?
I have a occurs for 100 times but it has executed 101 time what could be the reason?
What guidelines should be followed to write a structured Cobol program?
why do u need inspect verb?