Model answer
Lomuto usually chooses the last pivot, maintains one boundary, and returns the pivot's final index; it is simple but can make many swaps. Hoare scans inward from both ends and returns a split boundary, often making fewer swaps but requiring different recursion bounds.
Use the key terms, then explain the reasoning.