Concept:Data is saved in the same order as it arrives, without any sorting or indexing.Explanation:This method is called sequential file organization.In this method, records are appended one after another, so the first record stored is the oldest.Accessing a record requires reading from the beginning until the required record is found.It is best used for data that is processed in a fixed order, such as logs or transaction records.Answer:D. sequential file organization.