Multiple Choice
Which of the following would define a two dimensional structure to store temperature during three periods of a day for seven days?
A) int [ , ] temp = new int [7, 3];
B) int [ , ] temp = new int [6, 2];
C) int temp[7] [3 ] = new temp [7] [3];
D) int temp[6] [2 ] = new temp [6] [2];
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
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
Q30: Which of the following is a valid
Q31: double [ , ] price = new double [2
Q32: Which of the following is a valid
Q33: The string is a reference type in
Q34: C# has two types of string literals.