You're developing a database system and need to frequently update records. What file handling technique would you use to efficiently update specific records without reading the entire file?

  • Direct File Updating
  • Indexed File Updating
  • Random File Updating
  • Sequential File Updating
Indexed File Updating would be the most efficient technique for frequently updating specific records in a database system. With an index, the system can quickly locate and update the desired record without the need to read the entire file sequentially. This reduces the time and resources required for updates, making it a suitable choice for scenarios where frequent record updates are a common operation in a database.
Add your answer
Loading...

Leave a comment

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