Q. What is the array of these statements?
Code:
Dim intScores As Integer = {78, 83, 75, 90}
Array.sort (intScores)
β
Correct Answer: (D)
Compilation Error
Dim intScores As Integer = {78, 83, 75, 90}
Array.sort (intScores)
You must be Logged in to update hint/solution