Multiple choice Which of the following is not correct about quicksort algorithm? The partition method returns the position of pivot element as it should be in the final sorted array. The average running time of quicksort is O(nlogn). Quicksort is faster than insertion sort and bubble sort. Best case running time of quicksort is O(nlogn). Worst case running time of quicksort is O(nlogn). Reveal answer Fill a bubble to check yourself E Correct answer Explanation This is incorrect, the worst case running time of quicksort is quadratic.