Answer:
The quicksort pivot is an arbitrary element within the collection that is being sorted. Â Using the pivot point, the collection of elements is partitioned into two smaller lists of elements. Â Using some logic, the smaller elements are placed left of the pivot point, and larger elements are placed to the right of the pivot point. Â Ideally, you would prefer you pivot point to be a median of your dataset to optimize the creation of the two sublists into a balanced state.
Cheers.