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 4 types of organizational structures?
How can I determine whether a machines byte order is big-endian or little-endian?
What are preprocessor directives in c?
explain how do you use macro?
How can I automatically locate a programs configuration files in the same directory as the executable?
What are the types of unary operators?
Write a program to print all permutations of a given string.
What is a double c?
How main function is called in c?
What are the basic data types associated with c?
Explain what are the different file extensions involved when programming in c?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is the use of bitwise operator?
can anyone please tell about the nested interrupts?
Can i use “int” data type to store the value 32768? Why?