Solved

Which of the Following Would Define a Two Dimensional Structure

Question 29

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions