Multiple Choice
What does the following statement do? double[] array1 = new double[10];
A) Declares array1 to be a reference to an array of double values
B) Creates an instance of an array of 10 double values
C) Will allow valid subscripts in the range of 0 - 9
D) All of the above
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q4: It is common practice to use a
Q6: You use this method to determine the
Q9: By default, Java initializes array elements with
Q9: Objects in an array are accessed with
Q10: The binary search algorithm:<br>A) is less efficient
Q16: What would be the results after the
Q17: If final int SIZE = 15 and
Q39: A sorting algorithm is a technique for
Q51: If a[ ] and b[ ] are
Q64: What would be the results of the