Can printer files (having 133 characters) be of variable
length?
Answers were Sorted based on User's Feedback
Answer / amy
The printer file is defined as FBA(Fixed block attribute)
with a length of 133 where the first byte contains the
printer carriage control characters and rest 132 contains
printable characters.
It can't be of variable length.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / atif
Printer File can be in two format. One is FB-133 byte n
another is FBA-134 byte
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / jagannath
No the file has to be of fixed byte with length 133.
| Is This Answer Correct ? | 0 Yes | 3 No |
what is the use of keep and pass in disp
how to access the file from prodution from changeman tool and to submit a file to production
If we use GO BACK instead of STOP RUN in cobol?
what is the coding difference between COBOL and CICS.
What are the different ways to run a COBOL DB2 program using JCL?
how to display comp3 variables reply soon ?
State the various causes of s0c1, s0c5 and s0c7.
in a indexed file what is procedure for read the records from 12 to 18. please give the code example
What is the maximum size of a 01 level item in COBOL I? in COBOL II?
Identify the invalid dataname from the following: (A) savings-account (B) annual-allocation-for-overhead (C) samount250 (D) 12demand
How many types of sorts are there in cobol?
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1