What is a data structure?
An organized way of storing related data in a single entity.
State 2 types of data structures.
What is an array? (2)
What is the code to create a 1D array?
Dim myArray [3] as integer
What is the code to create a 2D array?
Dim myArray [3,2] as integer
What is a record?
A way to store data of different data types.
When is a record or an array used? (2)