Question: 4. The intSales array is declared as follows: Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}. Which of the following loops will correctly
4. The intSales array is declared as follows: Dim intSales() As Integer =
{10000, 12000, 900, 500, 20000}. Which of the following loops will correctly multiply each element by 2? The intSub variable contains the number 0 before the loop is processed.
a. Do While intSub <= 4 intSub *= 2 Loop
b. Do While intSub <= 4 intSales *= 2 Loop
c. Do While intSub < 5 intSales(intSub) *= 2 Loop
d. none of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
