You are working on an application that requires fast data retrieval times. What method of file access would be most suitable?

  • Direct File Access
  • Indexed File Access
  • Random Access
  • Sequential File Access
For fast data retrieval times, Random Access is the most suitable method. Unlike Sequential File Access, which reads data sequentially, and Indexed File Access, which uses an index to locate data, Random Access allows direct access to any part of the file. This is crucial for applications where quick retrieval of specific data is essential, such as databases and real-time systems.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *