Que: Which of the following declares a two-dimensional array that has three rows and four columns?

a. Dim decNums(2, 3) As Decimal
b. Dim decNums(3, 4) As Decimal
c. Dim decNums(3, 2) As Decimal
d. Dim decNums(4, 3) As Decimal
Answer: Dim decNums(3, 4) As Decimal

Leave a Comment