What is the array of these statements?
Dim intScores As Integer = {78, 83, 75, 90}
Array.sort (intScores)
Dim intScores As Integer = {78, 83, 75, 90}
Array.sort (intScores)
A. {75, 78, 83, 90}
B. {78, 75, 90, 83}
C. {90, 83, 78, 75}
D. Compilation Error
Answer: Option D

Join The Discussion