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 / guest

It should be 54. (ie 6 + 8*6)

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What guidelines should be followed to write a structured cobol prgm?

668


What is the Purpose of Pointer in the string?

640


How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that

2728


What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?

672


What is the usage of comp fields in cobol?

651






what is the use of outrecord?

1768


Which division and paragraphs are mandatory for a COBOL program?

707


What is the utilization of copybook in cobol?

650


Which Search verb is equivalent to PERFORM…VARYING?

679


What is the difference between next sentence and continue in cobol programing language?

706


How to traceback if I am getting SOC7 or SOC4 abend? List down the steps

663


Explain how you can characterize tables in cobol?

636


What are the access modes of START statement?

716


What are INPUT PROCEDURE and OUTPUT PROCEDURE?

679


i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this

992