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