Answer Posted / vivek
A sparse file is a type of computer file that attempts to
use file system space more efficiently when the file itself
is mostly empty. This is achieved by not writing data to
disk when it has been allocated but not actually filled
with data. Instead, brief information about these empty
regions is stored, which takes up much less disk space.
These regions are only written to disk at their actual size
when data is written to them; the file system transparently
converts empty sections into blocks filled with zero bytes
when read at runtime. Most modern file systems support
sparse files, including most Unix variants and NTFS. Sparse
files are commonly used for disk images, database
snapshots, log files and in scientific applications.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Why is extern used in c?
What are the advantages of c preprocessor?
What are the different categories of functions in c?
What is c++ used for today?
Tell me the use of bit field in c language?
List the variables are used for writing doubly linked list program.
Why functions are used in c?
Why do we use namespace feature?
Why doesnt long int work?
What is mean by data types in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Explain how do you view the path?
Explain the use of #pragma exit?
How are pointers declared in c?