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 ▸

In programming, some languages are compiled and others are interpreted. Define the difference between the two.


How can I decide whether Quicksort or Mergesort is better for a given situation?


Given an ordered array of integers "V" and a integer "Sum", write a function that would return "true" if it finds two numbers in V that add up to Sum, and "false" otherwise.


What is Reverse Polish Notation?