What are the four key points for Arrays?
What are the three key points for records?
How do you use records?
What is a tuple?
A tuple is a list which is immutable (can’t be changed once created), they are static
What is a list?
A list is mutable (can be changed once created)
What is a static data structure?
Size of the structure cannot change at run time
What is a Dynamic data structure?
Size of the structure can change at run time
What does Immutable mean?
Structure and data cannot be changed at run time
What does Mutable mean?
Structure and data can be changed at run time