50.5k views
5 votes
Which one of the following statements correctly declares a reference variable named values that can be used to reference an array of int?a. int values[];b. values[int];c. int[] values;d. int [values];

1 Answer

3 votes

c. int[] values;

The statement "int[] values;" correctly declares a reference variable named "values" that can be used to reference an array of int.

In java, the square bracket "[]" is used to indicate an array, and it should come before the variable name.

Option a "int values[];" is also correct but it is an older way of declaring array.

Option b and d are incorrect because the square bracket "[]" is not in the correct loca

User Zeleniy
by
7.0k points