How many bytes will be allocated for the following record
description
entries?
01 REC-A.
05 A PIC S9(4).
05 B PIC XXXBXXX.
05 C PIC ____9.99.
05 D PIC S9(5) COMP-3.
05 E PIC 9(3) COMP.

Answers were Sorted based on User's Feedback



How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / khamuruddin

05 A PIC S9(4). = 4
05 B PIC XXXBXXX. = 7
05 C PIC ____9.99. = 4
05 D PIC S9(5) COMP-3. = 3
05 E PIC 9(3) COMP. = 2
-------
20
-------

Is This Answer Correct ?    23 Yes 2 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / ezhil_18

@ above

COMP3 data require always requrie n+1/2 bytes. here 5+1/2
takes only 3 bytes not 4 bytes.

Is This Answer Correct ?    14 Yes 1 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / elite group

20 Bytes

Is This Answer Correct ?    11 Yes 4 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / raj

05 A PIC S9(4) -> 4
05 B PIC XXXBXXX -> 7
05 C PIC ____9.99 -> 4
05 D PIC S9(5) COMP-3 -> 3
05 E PIC 9(3) COMP -> 2

SO TOTAL OF 20 BYTES

Is This Answer Correct ?    2 Yes 0 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / vijay

05 A PIC S9(4) -> 5 (BY CONSIDERING ONE SIGN BIT)

05 B PIC XXXBXXX -> 7 ( AS YOU ALL KNOWS ABOUT THIS)

05 C PIC ____9.99 -> 4 (SPACE AND 9V99=9(3))I THINK

05 D PIC S9(5) COMP-3 -> 3 ((5/2)+0.5)FOR ODD NUM WE HAVE
CONSIDER ONE 1/2 BYTE ONLY=0.5)

05 E PIC 9(3) COMP -> 2 (9(1) TO 9(4)=HALFWORD=2BYTES)

(9(5) TO 9(9)= WORD= 4 BYTES)
(9(10) TO 9(18)= FULLWORD=8BYTES)

Is This Answer Correct ?    2 Yes 2 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / suresh kumar

sorry to post the last answer, I would like to go for 24
bytes.

Is This Answer Correct ?    2 Yes 3 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / guest

y there is soo much confusion.. plz mention correct ans..
else it will confuse the readers.. :(

Is This Answer Correct ?    3 Yes 4 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / priyanka

I think t will be 25 since

05 A PIC S9(4). - 5 :4 + 1 sign byte
05 B PIC XXXBXXX. - 7
05 C PIC ____9.99. - 8
05 D PIC S9(5) COMP-3. - 3
05 E PIC 9(3) COMP. - 2
__________________________________________
Total = 25 bytes

Is This Answer Correct ?    2 Yes 3 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / madhu

A - 2
B - 7
C - 4
D - 3
E - 2

Total 18 bytes.

Is This Answer Correct ?    5 Yes 9 No

How many bytes will be allocated for the following record description entries? 01 REC-A. ..

Answer / raj

05 A PIC S9(4) -> 4
05 B PIC XXXBXXX -> 7
05 C PIC ____9.99 -> 4
05 D PIC S9(5) COMP-3 -> 4
05 E PIC 9(3) COMP -> 2

SO TOTAL OF 21 BYTES

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More COBOL Interview Questions

How include time & date in the report generation in cobol programing?

2 Answers  


What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I am going to Display the WS-VARX and WS- VARN?

6 Answers   Xansa,


Where the Plan is located in CICS-DB2

2 Answers   IBM,


Define in-line perform?

1 Answers  


what is qualification on occurs clause?

2 Answers  






if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need

0 Answers  


How do u debug a S0C7 abend? (aswered till we get the field which caused that) After knowing the field which caused that how do u know the record which caused that if it is in production env? (dumb) Ok let us assume that we got to know that 100th record caused that and I wanted to skip only 100th record from the file and process from 101th. How to do that in JCL using SORT? (tried with STOPAFT but ended up dumb when he said smthing else is ther)

3 Answers   IBM,


a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?

4 Answers  


when SE37 SB37 and sd37 occurs how to increase the volume , primary quantity and secondary quantity?

1 Answers   Hewitt,


in cobol main pgm is calling sub pgm but sub pgm does not exists , what abend i get if submit the job?

2 Answers   HSBC,


consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end

3 Answers   TCS,


when COMP-3 is preferrable?

3 Answers   Patni,


Categories