Multiple choice technology architecture

Identify the data structure which allows deletions at both ends of the list but insertion at only one end.

  1. Input-restricted deque

  2. Output-restricted deque

  3. Priority queues

  4. None of above

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

An input-restricted deque allows deletions from both ends but restricts insertions to only one end. This is a specialized deque variant - unlike standard deques (full operations at both ends) or output-restricted deques (opposite restriction). Priority queues use different ordering principles entirely.