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...
Program Evaluation Review Technique (PERT)/Critical Path Method (CPM) and Gantt charts are mutually exclusive techniques.
Answer the following statement true (T) or false (F)
____ permits communication and interaction from the client to the server for producing dynamic, two-way Web pages.
A. CGI B. HTTP C. HTTPS D. HTTP2