Explain the bubble sort algorithm.
Answer
This algorithm is used for sorting a list. It makes use of a temporary variable for swapping. It compares two numbers at an instance and swaps them if they are in wrong order. This process is repeated till no swapping is required. Algorithm is very inefficient if list is long.