1. What is comparison-based sorting?
Sorting algorithms that determine order solely through element comparisons.
Explication
Comparison-based sorting algorithms determine the order of elements by comparing pairs of items using relational operators like '<' or '>'. This approach is fundamental to algorithms such as Bubble Sort, Selection Sort, and Quick Sort, and is characterized by their reliance on comparisons to decide element order.