what is the use of filler in cobol programing?

Answers were Sorted based on User's Feedback



what is the use of filler in cobol programing?..

Answer / anubhav

FILLER can be used to align numeric variables to word
boundaries for performance improvement.

When you intialize a group variable, filler fields are
unaffected. This can be used to our advantage. for example
in date fields-
Code:
01 date-fl.
05 mm pic xx.
05 filler pic x value '/'.
05 dd pic xx.
05 filler pic x value '/'.
05 yy pic xx.

By declaring this variable we need not move '/' as a
separator even if we use and initialize date-fl in program
many times.

Is This Answer Correct ?    50 Yes 8 No

what is the use of filler in cobol programing?..

Answer / vinod

filler is used when we declaring the files supose if u give
record length 80 while declaring in file rec given the size
only 60 for filling the gap of the record in to the spaces
we use the filler.
ex:
01 file1-rec.
02 file-name pic x(60).
02 filler pix x(20).

Is This Answer Correct ?    45 Yes 4 No

what is the use of filler in cobol programing?..

Answer / guest

to fill the unused spaces in a record size

Is This Answer Correct ?    32 Yes 3 No

what is the use of filler in cobol programing?..

Answer / ganesh

in simple, for decoration purpose.... as well as for clarity
output

Is This Answer Correct ?    21 Yes 9 No

Post New Answer

More COBOL Interview Questions

In COBOL "BEFORE" advancing is there or not ?

3 Answers  


What are VS COBOL 11 special features?

1 Answers  


What will happen if you code GO BACK instead of STOP RUN in a stand-alone COBOL program i.e. a program which is not calling any other program ?

3 Answers  


What kind of error is trapped by on size error option?

0 Answers  


study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10

4 Answers   TCS,






where will we code call by content and call by reference dude pls reply soon ?

2 Answers  


How to remove the spaces at the end of each record in the output file of variable length, via cobol program?

0 Answers  


how many times PARA-A is performed : PERFORM PARA-A VARYING TIMES-COUNTER FROM 1 BY 1 UNTIL TIMES-COUNTER >0 PARA-A MOVE P TO Q MOVE H TO TIMES COUNTER a.10 b.1 c.11 d.0

4 Answers   TCS,


How To move a value to an array using move verb?

3 Answers   IBM,


How to read records from flat file in reverse order through COBOL program?

14 Answers   Accenture, Broadridge, IBM, MAT, Polaris, SPIC, Syntel, TCS, Wipro,


What is binary search?

3 Answers  


Define in-line perform?

1 Answers  


Categories