Answer :
Answer: a) Bubble sorting
Explanation:
Bubble sorting is defined as algorithm that is used for sorting list elements by repeating itself through comparing elements of the list that are adjacent to each other.The elements get swapped if they are found in incorrect order by comparison. This process continues till the listed is sorted.
- Other options are incorrect because insertion sort is the sorting process that takes place through placing the elements at correct position one at a time.
- Merge sort uses divide and conquer techique for dividing up the elements into sub-list and then merging it accordingly to sort.Selection sort is type of sorting based on dividing the list in left and right parts to place elements correctly.
- Thus, the correct option is option(a).