Q:what is the difference between the variable length and
fixed lenght.how it varies in the cobol.
Answer Posted / 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 |
Post New Answer View All Answers
Which is not true about evaluate statement
How do you get the data to code the BMS macro?
What is rmode(any) ?
What is the difference between Global and External Variables?
HOw can I get the negative sign while deduct high value from low value
Can a Search can be done on a table with or without Index?
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
What are the different rules of SORT operation?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
What is the difference between PIC 9.99 and 9v99 in COBOL?
How arrays can be defined in COBOL?
What are the different types of condition in cobol and write their forms.
What is the difference between Call and a Link?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?