MCQOPTIONS
Saved Bookmarks
| 1. |
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» C. replace the 900 amount with 10 | |