Correct option is (a) so as to avoid worst case time complexity
The best I can explain: Median of three quick sort helps in avoiding the worst case time complexity of O(n^2) which occurs in case when the input array is already sorted. However, the average case and best case time complexities remain unaltered.