Given the following statements, length is a property of all
arrays. By writing the name of an array followed by a dot,
followed by the word length, it will return the total number of
locations in the array.
int [ ] list = new int[10];
int n = list.length;
What is the value of n?
10
9
The value depends on how many integers are stored in the array
list.
0