Lab Price = $5
Please feel free to send us your queries at: [email protected]
Payment methods
Consider the following Visual Basic statements:
Dim nums(6) As Double
For index As Integer = 0 To 6
nums(index) = index * 2.5
Next
What values are placed in the array by the above statements? (Show each element of the array, the value for that element, and how you achieve your answer.)
(Points : 25)