Multiple choice technology programming languages

How can you sort the elements of the array in descending order

  1. By calling ReverseSort()

  2. By calling SortReverse()

  3. By calling Descend()

  4. By calling Sort() and then Reverse() method

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

To sort an array in descending order in C#, you first call Sort() to arrange elements in ascending order, then call Reverse() to invert the sequence. There is no built-in ReverseSort() or SortReverse() method in the Array class, and Descend() is not a standard array method.