What is a data structure?
How we are able to store and retrieve data. Organizes data in some fashion
What is a list?
a list stores ordered collection of elements
what is a collection
An interface that defines common operations
What is a stack?
an ordered collection that stores object that are in a last-in first-out fashion
What is a queue?
Queue stores objects that are in a first-in, first-out fashion
What is a map?
An object that contains key/value pairs, useful for searching for a value by key.
What is an array?
The size of an array is fixed, unlike a list.