AP Week 1

-note that every element in an array has the same type (the base type): you can have an array of ints, an array of doubles, an array of Strings, an array of Bicycles; - know how to do the following : declare an array; create an array (using new operator); note that you can declare an array and create it at once, e.g.: double[] y = new double[20]; ................
................