What is a data structure?
A means of organising many data items into an aggregate
What is an array?
A collection of data where every element has the same type
How is an array stored in memory?
It’s held as a sequence of words in memory, with consecutive addresses
How do we create an array in memory?
We need to allocate space for every element. If there are 4 elements, you need four DATA statements even if no initial values.
What is the effective address?
X[i] has address X+i
What happens if an address is not within the range 0 to 65535?
It will overflow and come back lower than the base address we started with.