In file handling, what does the term "buffering" refer to?

  • Allocating additional storage for files
  • Organizing files into buffers
  • Storing a block of data in a memory buffer
  • Writing data to a file buffer
Buffering in file handling refers to the practice of storing a block of data in a memory buffer. This technique improves performance by reducing the frequency of physical I/O operations between the program and the file.
Add your answer
Loading...

Leave a comment

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