| 10% | Matching |
| 20% | Fill in the Blank |
| 20% | Short Answer |
| 30% | Discussion |
| 20% | Coding |
times[0] = 700; times[1] = 705; times[2] = 710; times[3] = 715; times[4] = 720; times[5] = 725; times[6] = 730; times[7] = 735; times[8] = 740; times[9] = 745; times[10] = 750; times[11] = 755; times[12] = 800; ...
data-type[] arrayname = { list of elements seperated by commas };
For example to create an array of 5 ints each initialized to 1 we could use the statement
int[] numbers = {1,1,1,1,1};
Recall that all of the elements in an array must be of the same type. However, when we stored object names in an array we are
not actually storing the object we are storing the reference to an object. It is important to keep in mind the difference
between an object and an object reference.