A type of file organization that stores data in the order of their arrival is called

A.

Indexed-sequential file organization

B.

Hashed file organization

C.

Random file organization

D.

Sequential file organization

Correct answer is D

A type of file organization that stores data in the order of their arrival is called sequential file organization.

In sequential file organization, records are stored in the order in which they are added to the file. This means that the first record in the file is the oldest record, and the last record in the file is the newest record.

Sequential file organization is a simple and efficient way to store data that is accessed in a sequential order. For example, sequential file organization is often used to store data that is logged in chronological order.

However, sequential file organization can be inefficient for accessing data in a random order. For example, if you want to access the 10th record in a sequential file, you have to read the first 9 records before you can access the 10th record.