What is sparse file?
Answer / 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 |
In which language linux is written?
Hi can anyone tell what is a start up code?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
What is static identifier?
what is the most appropriate way to write a multi-statement macro?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
Difference between fopen() and open()?
Which of these functions is safer to use : fgets(), gets()? Why?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Why is c so popular?
what is an inline function?