Which access method is least efficient for data retrieval?
The correct answer is: B
Explanation
Sequential access requires data to be accessed in a sequential order from the beginning of the file until the desired data is found. This method is inefficient when the required data is not near the beginning of the file, as it necessitates reading through all preceding data.
In contrast, direct access and indexed enable faster retrieval by allowing immediate access to specific data locations without the need for sequential scanning,Random access also provides efficient access to any data location in the file directly. Therefore, sequential access is the least efficient method for data retrieval among the choice