What will be the output of the following Visual Basic code?
Dim intScores As Integer = {78, 83, 75, 90}
Array.Sort(intScores)
Array.Reverse(intScores)
Dim intScores As Integer = {78, 83, 75, 90}
Array.Sort(intScores)
Array.Reverse(intScores)
A. 78, 83, 75,90
B. 75,78, 83,90
C. 78,75,83,90
D. 90,83,78,75
Answer: Option D

Join The Discussion