Que: The intSales array is declared as follows:Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}.The statement intSales(3) = intSales(3) + 10 will

a. replace the 500 amount with 10
b. replace the 500 amount with 510
c. replace the 900 amount with 10
d. replace the 900 amount with 910
Answer: replace the 500 amount with 510

Leave a Comment