Multiple choice

The process of combining the elements of two similar structures into a single structure is

  1. bubble sort

  2. sort operation

  3. merge operation

  4. insert operation

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Merge operation combines two similar data structures into a single structure while maintaining order. This operation is fundamental to merge sort algorithms and database operations. In sorted lists, merging creates one sorted list from two sorted lists by comparing elements from both lists sequentially.