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 |
What is the purpose of 'register' keyword?
What is the difference between int main and void main in c?
What are header files in c programming?
Can you please explain the difference between syntax vs logical error?
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
How does placing some code lines between the comment symbol help in debugging the code?
1. Write a program to reverse every second word in a given sentence.
write a own function to compare two strings with out using stringcomparition function?
which is the best antivirus and how to update it
Why do we use int main?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;