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.