Multiple choice technology operating systems

What is the size of the file /dev/null

  1. 100 Bytes

  2. 200 Bytes

  3. 0 Bytes

  4. Unlimited

Reveal answer Fill a bubble to check yourself
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.