Multiple choice technology programming languages How can you sort the elements of the array in descending order? By calling ReverseSort() By calling SortReverse() By calling Descend() By calling Sort() and then Reverse() methods Reveal answer Fill a bubble to check yourself D Correct answer Explanation Standard arrays in languages like C# or JavaScript do not have direct methods like ReverseSort or Descend. Sorting in descending order is typically accomplished by sorting in ascending order first and then reversing the array.