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
i need a small 3d program using inline and outline.
What rules are to be followed while using the corresponding options?
What is the difference between PIC 9.99 and PIC9v99?
Write some characteristics of cobol as means of business language.
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
What type of SDLC u followed? Why?
Explain what you understand by passing by value.
What are the rules of the move verb?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
what are decleratives in cobol?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
What are various search techniques in cobol? Explain.
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
What is difference between static and dynamic call in cobol?
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?