Multiple choice technology operating systems

6 What is /dev/random device?

  1. 1 A dummy device to represent swap

  2. 2 A dummy device to represent any device

  3. 3 A dummy device to provide infinite number of randon numbers

  4. 4 Invalid device

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

/dev/random is a special device that provides random numbers generated by the kernel from environmental noise (device drivers, interrupt timing, etc.). It blocks when entropy pool is depleted, ensuring high-quality randomness for cryptography. Option C has a typo ('randon' instead of 'random') but is correct.