Describe a queue data structure.

A queue is a FIFO (First In First Out) data structure.
Analogous to a production line, the first item in the list will be the first to be removed, the second the second and so on.

MT

Related Computing A Level answers

All answers ▸

Describe Round Robin Scheduling


Taken from an AQA paper: A common misconception is that the Internet is the World Wide Web. Explain the differences between the Internet and the World Wide Web.


Represent the denary number 5.625 as an unsigned binary fixed point number with three bits before and five bits after the binary point.


Write pseudocode for the linear search algorithm, and then explain it’s complexity using big-O notation