Which sorting algorithm has a time complexity of O(n log n) in the average and worst-case scenarios?
What is the space complexity of the recursive implementation of Merge Sort?
Which sorting algorithm is considered an in-place algorithm?
In the context of sorting algorithms, what does 'stability' refer to?
Which sorting algorithm performs best when the input array is nearly sorted?
What is the worst-case time complexity of Quick Sort?
Which data structure is typically used to implement Heap Sort?
Which sorting algorithm has the best time complexity in the best-case scenario?
Which sorting algorithm is not a comparison-based algorithm?
Which of the following sorting algorithms has a time complexity that is NOT affected by the initial order of elements in the input array?
Which of the following sorting algorithms requires additional space proportional to the range of input elements?
Which sorting algorithm is most efficient for sorting linked lists?
What is the typical space complexity of Insertion Sort?
Which of the following sorting algorithms is generally preferred when memory is extremely limited?
In which scenario is Bucket Sort most effective?