22.
What must be the missing logic below so as to print mirror of a tree as below as an example?
Binary Search Trees(B Tree) mcq question image

if(rootnode):
  mirror(rootnode-->left)
  mirror(rootnode-->right)
 
  //missing
 
end

28.
If the tree is not a complete binary tree then what changes can be made for easy access of children of a node in the array?

30.
What are null nodes filled with in a threaded binary tree?

Read More Section(Binary Search Trees(B Tree))

Each Section contains maximum 100 MCQs question on Binary Search Trees(B Tree). To get more questions visit other sections.