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:

Verified
Correct Answer:
Verified
Q1: Java does not limit the number of
Q30: Java provides a mechanism known as _,
Q32: You use this method to determine the
Q33: To return an array of long values
Q34: What will be the result of the
Q35: What does <String> specify in the following
Q37: Given the following two-dimensional array declaration, which
Q39: This method returns a string representing all
Q40: The Java compiler does not display an
Q61: The String [ ] args parameter in