You have an array of n elements. Suppose you implement quick sort by always choosing the central element of the array as the pivot. Then the tightest upper bound for the worst case performance is
O(n2)
O(n*log(n))
Theta(n*log(n))
O(n3)
This question is part of this quiz :