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
what are the different storage classes in c?
write a c program to find the sum of five entered numbers using an array named number
What is a header file?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What is the difference between mpi and openmp?
List some applications of c programming language?
What is the meaning of && in c?
Explain union. What are its advantages?
What does c mean in standard form?
What is the use of extern in c?
can any one tel me wt is the question pattern for NIC exam
Why & is used in scanf in c?
How does #define work?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is static and auto variables in c?