Multiple Choice
Which statement is the best solution for the following problem? Write a statement that initializes a two-dimensional array of Integers named intGrades. The array will have 2 rows, with 93, 91, and 84 in the first row and 85, 89, and 91 in the second row.
A) Dim intGrades(2,3) As Integer = { {93, 91, 84}, {85, 89, 91} }
B) Dim intGrades(,) As Integer = { {93, 91, 84}, {85, 89, 91} }
C) Dim intGrades() As Integer = { 93, 92, 84,85, 89, 91}
D) Dim intGrades(1, 2) As Integer = { {93, 91, 84}, {85,89, 91} }
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Values in an array are stored and
Q2: Which of the following statements sorts an
Q3: Which of the following code segments is
Q4: Which of the following code segments displays
Q6: Which of the following could be used
Q7: Parallel arrays have all of the following
Q8: Which of the following statements defines a
Q9: Which of the following is the correct
Q10: Which of the following declares an array
Q11: Which of the following allows an application