If youngest event in the queue has to be discarded ,a queue should have a limit policy of
-
Discard none
-
Discard last
-
Discard new
-
Discrd first
C
Correct answer
Explanation
When a queue reaches capacity and a new event arrives, the 'discard new' policy means the newest (youngest) event is discarded while keeping existing events. 'Discard last' and 'discard first' refer to removing the oldest or newest event respectively, while 'discard none' means the queue grows unbounded. The typo in option D ('Discrd') doesn't change its meaning.