A person sorting a hand of cards might reasonably use which sorting algorithm?

Insertion Sort
  • Bubble Sort
  • Quicksort
  • Mergesort

Think about each algorithm in turn, and imagine yourself trying to use it for sorting a hand of cards.

If you pick up the first two cards you might put them in order, then pick up the next card, and so on.

Or you might pick up all the cards to start, but then still sort them from left to right.

What sorting algorithm resembles this procedure?