Q. What will be the output of the following Visual Basic code?
Code:Dim intScores As Integer = {78, 83, 75, 90}
Array.Reverse(intScores)
β
Correct Answer: (D)
90,75,83,78
Dim intScores As Integer = {78, 83, 75, 90}
Array.Reverse(intScores)
You must be Logged in to update hint/solution