Question Detail The complexity of merge sort algorithm is O(n)O(log n)O(n2)O(n log n) Answer: Option D Similar Questions : 1. Which of the languages is often translated to the pseudo code PASCALFORTRANPL/IBASIC Answer: Option A 2. Preorder is depth first orderbreadth first ordertopological orderlinear order Answer: Option A 3. A linear list from which elements can be added or removed from either end is called stackqueuedequetree Answer: Option C 4. Deletion from one end and insertion from other end is stackbranchtreequeue Answer: Option D 5. What are the minimum number of queues needed to implement the priority queue? OneTwoThreeFour Answer: Option BExplanation:One queue is used for the actual storing of data, and the other one is used for storing the priorities. Read more from - Data Structure Questions Answers - Chapter 1