Multiple choice technology programming languages

How can we manage loss of unhandled packets / Requests in any application

  1. By using some user defined(Custom) Data Queue

  2. By using Microsoft Messaging Queue (MSMQ)

  3. Both of the above

  4. None of the above

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

Microsoft Message Queue (MSMQ) is specifically designed to handle message loss and ensure reliable delivery of packets/requests. It provides queuing, guaranteed delivery, and recovery mechanisms. Custom data queues (option A) would need to implement these features from scratch.