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
Which is an example of a structural homology?
What is a null pointer in c?
Explain how do you list a file’s date and time?
Who invented b language?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is array in C
What are the advantages of using Unions?
writ a program to compare using strcmp VIVA and viva with its output.
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Where define directive used?
Explain how can I pad a string to a known length?
Is calloc better than malloc?
What are the scope of static variables?
Write a code to remove duplicates in a string.