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 |
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 |