Menu

Binary Trees Questions

MCQ
91.
What is inefficient with the below threaded binary tree picture?
forum Discussion
MCQ
92.
Binary trees can have how many children?
forum Discussion
MCQ
93.
Disadvantage of using array representation for binary trees is?
forum Discussion
MCQ
94.
What are the children for node
forum Discussion
MCQ
95.
What is the parent for a node
forum Discussion
MCQ
96.
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 ?
forum Discussion
MCQ
97.
Consider a situation of writing a binary tree into a file with memory storage efficiency in mind, is array representation of tree is good?
forum Discussion
MCQ
98.
Why we prefer threaded binary trees?
forum Discussion
MCQ
99.
The following lines talks about deleting a node in a binary tree.(the tree property must not be violated after deletion)
i) from root search for the node to be deleted

ii)

iii) delete the node at

what must be statement ii) and fill up statement iii)
forum Discussion
MCQ
100.
Which of the following graph traversals closely imitates level order traversal of a binary tree?
forum Discussion