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