Technique Consider an unordered list { K 1 , K 2 , K 3 ,… , K n }. In the first pass, K 2 is compared with its sorted sublist of predecessors, i.e., {K 1 }, and K 2 inserts itself at the position to give the list {K 1 ,K 2 }. In the next pass, K 3 is compared with its sorted sublist of predecessors, i.e., {K 1 ,K 2 }, and K 3 is inserted at the appropriate position to give the list { K 1 ,K 2 ,K 3 }. In the (n-1) th pass, K n is compared with its sorted sublist of predecessors, i.e., { K 1 ,K 2 ,K 3 ,…,K n-1 }, and K n is inserted at the appropriate position to give the list { K 1 ,K 2 ,K 3 ,…,K n-1 ,K n }. This technique is referred as sinking or sifting 8