Solved

Which of the Following Statements Is(are) True About This Code

Question 32

Multiple Choice

Which of the following statements is(are) true about this code? final int ARRAY_SIZE = 10;
Long[] array1 = new long[ARRAY_SIZE];


A) It declares array1 to be a reference to an array of long values.
B) It will allow valid subscripts in the range of 0 through 9.
C) It creates an instance of an array of ten long values.
D) All of these are true.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions