What will be the output of the following Visual Basic code? Dim intScores As Integer = {78, 83, 75, 90} Array.Reverse(intScores)

78, 83, 75,90
75,78, 83,90
78,75,83,90
90,75,83,78

The correct answer is D.

The Array.Reverse method reverses the order of the elements in an array. In this case, the array intScores contains the elements 78, 83, 75, and 90. When the Array.Reverse method is called, the elements are reversed, so the output is 90, 75, 83, and 78.

Option A is incorrect because it does not reverse the order of the elements. Option B is incorrect because it reverses the order of the elements in the wrong way. Option C is incorrect because it does not reverse the order of the elements.