What is a queue?
A data structure in which items are stored in the order that they should be accessed
What type of data structure is a queue?
First in First Out (FIFO)
What uses does a queue have?
A buffer
A card game
Performing a breadth first search
Why is the method IsFull necessary?
Queues are static data types (have fixed length) and so the enqueue doesn’t add an item to a full queue