More on methods
nArguments provided in a method are in general expressions. nA method invocation must provide an argument of the appropriate type for each parameter. i.e.                   npublic void move(int direction,       double distance)
nrequires an int and double
nobject.move(90, 2.5);
n