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 |
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What is the mean of this statement:: if(int i=0 * i=9)
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What does p mean in physics?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
Simplify the program segment if X = B then C ← true else C ← false
how to find a 5th bit is set in c program
what is the output of printf("%d",(scanf("%d",10));
What functions are in conio h?
How do you define a string?
Explain what is wrong in this statement?