Reading Assignments 
NOTE: Slides are accessible only from on-campus locations.
Homework Assignments 
ReviewEx12:
boolean arrayEquals(int[] x, int[] y): which returns true if the arrays x and y contain the same values in the same order, and false otherwise.
double[] arrayCopy(double[] x): which returns a new array which is a copy of the array x.
void zeroArray(double[] x): which fills the array x with zeros.
void removeAll(ArrayList a): which removes all of the elements from the ArrayList a.
Vocabulary 
Lab Assignment 
Related Web Sites 
Object class.
Sample Code 