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} }
b. Dim intGrades(,) As Integer = { {93, 91, 84}, {85, 89, 91} }
You might also like to view...
How does knowing how to manipulate text help you in gathering and creating information on the Internet?
What will be an ideal response?
A database file that includes the database forms, queries, reports, and macros with shortcuts to the tables
a. ACCDE b. Back end c. Front end
Which type of computer would more likely use a BTX motherboard?
A) Laptop B) Server C) Netbook D) Desktop E) Cell phone
Which of the following is not a comparison operator? ____
A. = B. <= C. << D. <>