When calling a method and passing an array variable as an argument, the variable contains a ____________ to the array.

a. variable
b. value
c. reference
d. parameter

c. reference

Computer Science & Information Technology

You might also like to view...

Which of the following is not a normal step in preparing to create a macro?

A) Practice recording the macro. B) Identify the task you want to record. C) Decide on a meaningful name for the macro. D) Determine what template the macro will be stored in.

Computer Science & Information Technology

What is the value of a after execution of the following code?

int a = 10; for (int ctr = 0; ctr < 4; ctr++) a = a – 1; a = a + 3; a) 8 b) 9 c) 18 d) 20

Computer Science & Information Technology