Que: What is the array of these statements?

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: Compilation Error

Leave a Comment