Solved

Which of the Statements Are True About the Following Code

Question 38

Multiple Choice

Which of the statements are true about the following code?
Final int ARRAY_SIZE = 10;
Long[] array1 = new long[ARRAY_SIZE];


A) declares array1 to be a reference to an array of long values
B) creates an instance of an array of 10 long values
C) will allow valid subscripts in the range of 0 through 9
D) All of the above

Correct Answer:

verifed

Verified

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

Related Questions