123456789101112131415



Question 1: Java uses call by value. What is the value that is being passed into routine by the method call in the following?
double[] rats = {1.2, 3.4, 5.6};

routine( rats );

1. A copy of the array rats
2. The value of the elements of Rats
3. A reference to the array object rats
4. 1.2