Multiple choice technology operating systems

23 What is a message queue?

  1. 1 A printer queue

  2. 2 An IPC mechanism with destructive execute

  3. 3 An IPC mechanism with destructive write

  4. 4 An IPC mechanism with destructive read

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

Message queues use destructive read - once a message is read by a receiver, it is removed from the queue. This ensures each message is processed exactly once. It is an IPC mechanism, not related to printer queues, and the destructive operation happens on read, not write or execute.