What is an array?
A variable that stores a list of data items each being directly accessible.
What is each item in an array called?
An element
What is each location of an element called within an array?
An index
What number does an index start with inside an element?
0
How would you assign element 0 with the value 250?
variableName[0] = 250
What symbol signifies brackets?
” [ “ and “ ] “
What symbol signifies braces?
” { “ and “ } “
What is a scaler?
A single item variable
Can an array’s index be a float number?
For example: 4.0
No.
What is swapping?
When you change the value of a variable (x) with the value of another (y).