Q & A by Maninder Singh

Question:

QUESTION: What are sorting algorithms (bubble sort, insertion sort, merge sort)?

Answer:

Sorting algorithms are like procedures for arranging data in a specific order. Bubble sort compares and swaps adjacent elements, insertion sort builds a sorted list one element at a time, and merge sort divides and conquers the sorting process.