Q:what is the difference between the variable length and
fixed lenght.how it varies in the cobol.
Answers were Sorted based on User's Feedback
Answer / sushant chavan
fixed length:-
1.Every record in the file has exactly same size (in byte)
2.It take huge memory.
3.Access become fast.
4.Computer knows exact location of records so easy access.
5.slow in transferring the records it has large size.
Variable length:-
1.Different record in the file have different size.
2.It take least memory.
3.access become slow.
4.computer does not know exact location of record so slow access.
5.fast transferring as it is small in size.
| Is This Answer Correct ? | 96 Yes | 10 No |
Answer / subash
A file where all the records are of the same length is said to have fixed length records.
Advantage : Access is fast because the computer knows where each record starts.
Disadvantage : Using Fixed length records, the records are usually larger and therefore need more storage space and are slower to transfer (load or save).
One or more of the fields can be of differing lengths in each record, called variable length records
Advantages:
the records will be smaller and will need less storage space
the records will load faster
Disadvantages:
The computer will be unable to determine where each record starts so processing the records will be slower.
| Is This Answer Correct ? | 74 Yes | 10 No |
Answer / sruthi
Fixed length means the length of all records in the file is
same.so we code record length is x chrs
where as in variable length means the length of records are
varying from each other. so we code as record length is x
to y chars
| Is This Answer Correct ? | 31 Yes | 22 No |
hi,
vareable length record is the record contain different
format(length) but the first 4 bytes taking length of record.
the fixed length record must be declaring length otherwise
throw the error.so after fill the records md fields fillup
th e filler clause.
| Is This Answer Correct ? | 39 Yes | 34 No |
Answer / thiyagarajan
if we didnt mention length then it is variable length,if we
declare the size then it is fixed length
| Is This Answer Correct ? | 20 Yes | 16 No |
Answer / boopathi
variable length is nothing but. we declare our
conviniance.but fixed lengtn we do not change
| Is This Answer Correct ? | 27 Yes | 29 No |
Answer / ragini roy
Fixed length strings, storage space required is length of string and range of values is 1to 65400 , characters, whereas the variable string length, storage space required is length +10 bytes and range of values is 0 to billion characters
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / manonmani.r
variable length is changed in dynamic variable creation.but
fixed lenth is mentioned in static variable creation.
| Is This Answer Correct ? | 9 Yes | 12 No |
Answer / krishnakumar
In JCL:
We have to code acutual lentgh + 4 Bytes for Variable
length files.For fixed length files we have to code actual
length.
in COBOL:
In FD Section we have to write
Recording Mode is F --> for Fixed length files,
Recording Mode is V --> for Variablelength files
| Is This Answer Correct ? | 8 Yes | 11 No |
How will 128 be saved in s9 (3) comp-3 How will 12 be saved in s9 (2) comp
What is report-item in COBOL?
How many maximum number of procedures can we write in one COBOL program?
I am getting S00F abend when i try to compare two variable of different pic class,one variable is of 9(09) and another is S9(09) comp-3. First i moved the data from S9(09) comp-3 to 9(09), but no luck. So i tried to move the data from S9(09) comp-3 to X (09) and move to 9(09). I am getting same error message, Please help me to find solution for this ptoblem. ERROR MESSAGE - "The system or user abend S00F R=NULL was issued."
TYPES OF SORTINGS. which is more prefarable.
What is the problem of ordered sequential files access?
Consider the below example call a-test1. -- -- -- a-test1. if a=b perform a-test through a-exit next sentence else if b=c perform c-test through c-exit. if a=d perform d-test through d-exit. a-test. -- -- a-exit. exit. can u tell me what will happen if a=b after looping into a-exit will the control go back to a- test1. will the condition a=d be checked???
What is XDC ?
what is the difference b/w level no.01 & level no.77?
consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size
for an INITIALIZE and what keyword allows for an override of the default.
Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?