Multiple Choice
Of the following statements, which one correctly initializes an int array named quarters with the values 1, 2, 3, and 4?
A) const int SIZE = 4; int[] quarters = new int[SIZE] { 1, 2, 3, 4 };
B) int[] quarters = new int[] { 1, 2, 3, 4 };
C) int[] quarters = { 1, 2, 3, 4 };
D) All of these statements are correct.
Correct Answer:

Verified
Correct Answer:
Verified
Q55: An array's_ indicates the number of values
Q56: The default value of a string array's
Q57: Reference variables can only reference objects.
Q58: Because the foreach loop automatically knows the
Q59: To add items to an existing List
Q61: When processing the contents of an array,
Q62: Because subscript numbering starts at 0, the
Q63: It is critical to use reference parameters
Q64: The storage locations in an array are
Q65: When you use either the ref or