Answer:
C. All Other Answers.
Step-by-step explanation:
Worst case time complexity of quick sort is O(n²) if it selects always the smallest or the largest number in the array it can be optimized by always selecting the right pivot.Since quicksort is inplace it does not require additional memory to sort the array.Quick sort is considered better than merge sort in cases of arrays.