Que: The intSales array is declared as follows:Dim intSales(,) As Integer = {{1000, 1200, 900, 500, 2000}, {350, 600, 700, 800, 100}}.The intSales(1, 3) = intSales(1, 3) + 10 statement will _______________

a. replace the 900 amount with 910
b. replace the 500 amount with 510
c. replace the 700 amount with 710
d. replace the 800 amount with 810
Answer: replace the 800 amount with 810

Leave a Comment