What is the main difference between the Stack and the Queue abstract data types?

Queues are FIFO (first in, first out) data types. That is, the first object to be queued is the first objected to be dequeued. Stacks are LIFO (last in, first out) data types, meaning that the last object pushed onto the stack is the first object to be popped from the stack.

RH

Related Computing A Level answers

All answers ▸

Describe the process of a binary search.


What is 55 using 8-bit unsigned binary?


Describe Round Robin Scheduling


Convert 10101100 to decimal.