Unit 7 Day 1 Arrays WS #1 for Java
I. Answer the following given the declarations:
final int MAX = 30; final int LENGTH = 200;
double[ ] list = new double[MAX];
Car[ ] lot = new Car[LENGTH]; //range of index/subscripts is0-199 int[ ] values = new int[MAX]; //range of index/subscripts is0-29
1. The valid range of index values for list is
2. The valid range of index values for lot is
3. The data type of list
4. The data type of lot
5. The data type of the index of list
6. The data type of the index of lot
7. Name two arrays that are the same size
OR
OR