Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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



Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

Answer / kannan

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

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

Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol...

Answer / adeti solomon

1.Yes
2.Yes
3.No
4.Yes
5.No
6.No

Is This Answer Correct ?    11 Yes 14 No

Post New Answer

More COBOL Interview Questions

How can we pass data from cobol to JCl?

7 Answers   ADP, Amdocs, IBM,


Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS

2 Answers  


Whats the use of Examine command? can someone help me?

1 Answers   IBM,


01 x pic s9(8) comp. How will the following value be internally allocated '18787'

4 Answers   Steria,


if one main program ,n -subprograms are then which call you follow ?why reasonuhg

4 Answers   UHG,


can we read records in a file from botom to top. if possible how can we read

12 Answers   ACS,


How will 128 be saved in s9 (3) comp-3 How will 12 be saved in s9 (2) comp

3 Answers   CTS,


What is SDSF?

13 Answers   IBM,


wht is packed decimal in cobol

2 Answers  


can we redefine 77 level item is it possible

4 Answers   HCL,


write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc

0 Answers  


Can we move SPACES to numeric field and ZEROES to alphabetic field? If yes what are the way doing this?

6 Answers   T systems,


Categories