Multiple Choice
There are several ways to do a compile-time initialization of two-dimensional arrays. All of the following are valid ways EXCEPT ____.
A) int [, ] anArray = {{100, 100, 100} {100, 100, 100}};
B) int [ , ] anArray = new int [ , ] {{100, 100, 100} {100, 100, 100}};
C) int [ , ] anArray = new int [2, 3 ] {{100, 100, 100} {100, 100, 100}};
D) int [ ] anArray = new int [10 ] {{100, 100, 100} {100, 100, 100}};
Correct Answer:

Verified
Correct Answer:
Verified
Q18: The major requirement of dealing with multi-dimensional
Q19: The _ method is used with the
Q20: Which of the following returns the number
Q21: Multi-dimensional array identifiers are normally defined using
Q22: If you override the GetHashCode( ) method,
Q24: One of the special properties in the
Q25: The Length property can be used to
Q26: The method in the string class that
Q27: The string type allows individual characters to
Q28: double [ , ] price = new double [2