Engineering Questions with Answers - Multiple Choice Questions

Data Structure MCQ’s – Heap

1 - Question

In a max-heap, element with the greatest key is always in the which node?
a) Leaf node
b) First node of left sub tree
c) root node
d) First node of right sub tree

View Answer

Answer: c
Explanation: This is one of the property of max-heap that root node must have key greater than its children.




2 - Question

Heap exhibits the property of a binary tree?
a) True
b) False

View Answer

Answer: a
Explanation: Yes, because the leaf nodes are present at height h or h-1, which is a property of complete binary tree.




3 - Question

What is the complexity of adding an element to the heap.
a) O(log n)
b) O(h)
c) O(log n) & O(h)
d) O(n)

View Answer

Answer: c
Explanation: The total possible operation in re locating the new location to a new element will be equal to height of the heap.




4 - Question

 The worst case complexity of deleting any arbitrary node value element from heap is __________
a) O(logn)
b) O(n)
c) O(nlogn)
d) O(n2)

View Answer
Answer: a
Explanation: The total possible operation in deleting the existing node and re locating new position to all its connected nodes will be equal to height of the heap.



5 - Question

Heap can be used as ________________
a) Priority queue
b) Stack
c) A decreasing order array
d) Normal Array

View Answer

Answer: a
Explanation: The property of heap that the value of root must be either greater or less than both of its children makes it work like a priority queue.




6 - Question

If we implement heap as min-heap, deleting root node (value 1)from the heap. What would be the value of root node after second iteration if leaf node (value 100) is chosen to replace the root at start.

a) 2
b) 100
c) 17
d) 3

View Answer
Answer: a
Explanation: As the root is deleted and node with value 100 is used as replaced one. There is a violation of property that root node must have value less than its children. So there will be shuffling of node with value 100 with node of value 2. And thus 2 becomes root. And it will remain to be at root after all the possible operations. So the value at root will be 2.



7 - Question

If we implement heap as maximum heap , adding a new node of value 15 to the left most node of right subtree. What value will be at leaf nodes of the right subtree of the heap.

a) 15 and 1
b) 25 and 1
c) 3 and 1
d) 2 and 3

View Answer

Answer: a
Explanation: As 15 is less than 25 so there would be no violation and the node will remain at that position. So leaf nodes with value 15 and 1 will be at the position in right sub tree.




8 - Question

An array consists of n elements. We want to create a heap using the elements. The time complexity of building a heap will be in order of
a) O(n*n*logn)
b) O(n*logn)
c) O(n*n)
d) O(n *logn *logn)

View Answer

Answer: b
Explanation: The total time taken will be N times the complexity of adding a single element to the heap. And adding a single element takes logN time, so That is equal to N*logN.

Get weekly updates about new MCQs and other posts by joining 18000+ community of active learners