Determine the total no of bytes in the following.
01 rec1.
02 a pic x(6)
02 b redefines a.
03 c occus 6 times pic 9.
02 d occurs 6 times pic 9.
03 e pic x(5)
03 f pic 999.
Answer Posted / madesh
1st of all it will give an error because of pic clause with
group item in occurs.
a.if we remove pic clause from there it will take 66 bytes.
01 rec1.
02 a pic x(6) == 6
02 b redefines a. == 6
03 c occus 6 times pic 9. == 0
02 d occurs 6 times.
03 e pic x(5) ==30
03 f pic 999. ==24
------
66
b.if we remove e,f
01 rec1.
02 a pic x(6) ==6
02 b redefines a. ==6
03 c occus 6 times pic 9. ==0
02 d occurs 6 times pic 9. ==6
----
18
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How do you get the data to code the BMS macro?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
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.
What is the compute verb? How is it used?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
What is length is cobol?
What are different data types in cobol?
What are the different rules of SORT operation?
Discuss about changing dataset name in proc.
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
how do you reference the variable block file formats from cobol programs
what is amode(24), amode(31), rmode(24) and rmode(any)?
Difference between array and sub-script ?
What is a scope terminator give example?
) what is the difference between AID and HANDLE AID?