What is the size of the file /dev/null
-
100 Bytes
-
200 Bytes
-
0 Bytes
-
Unlimited
C
Correct answer
Explanation
/dev/null is a special device file that always has size 0 bytes. It is a data sink that discards all data written to it and returns end-of-file when read. This is the standard Unix/Linux 'bit bucket' for unwanted output.