Is Quicksort Recursive?

Is Quicksort Recursive? Like merge sort Why is Quicksort recursive? The Quicksort is also one of the best examples of recursion, a key programming technique to solve Algorithmic problems. This algorithm is naturally recursive because it sorts the large list by dividing it into smaller sub-list and then applying the same algorithm to those. Can