Asked by Rebecca Blissenden on Sep 28, 2024

verifed

Verified

A queue is a last-in/first-out structure.

Queue

A queue is a linear data structure that follows a First In, First Out (FIFO) principle, where elements are added to the back and removed from the front.

  • Distinguish between sequential data structures such as queues and stacks.
verifed

Verified Answer

CM
Chaitanya Mahajan2 days ago
Final Answer :
False
Explanation :
A queue is actually a first-in/first-out (FIFO) structure, where the first element added to the queue is the first element to be removed.