6.1 Array
-
Incorrect
Correct
No Answer was selected
Invalid Answer
Vocabulary
Term | Definition |
---|---|
Array | Arrays are lists that store many values of the same type |
Index | Array values are stored at a particular index and we access elements in the array by referencing this index value. Index values in Arrays start a 0. |
array.length | Returns the length of the array |
array[index] | Accesses an element in the array to either update or retrieve. |