A Deque (Double Ended Queue) is a specialized queue that allows operations at…
2024
A Deque (Double Ended Queue) is a specialized queue that allows operations at ______.
- A.
Both ends (Front and Rear)
- B.
Front only
- C.
Rear only
- D.
Middle of the queue
Attempted by 316 students.
Show answer & explanation
Correct answer: A
A Deque (Double Ended Queue) is a type of queue in which insertion and removal of elements can be performed from either from the front or rear. Thus, it does not follow the FIFO (First In First Out) rule.