InterviewSolution
Saved Bookmarks
| 1. |
Which node is the child node of the Node D in the following ternary tree?(a) A(b) C(c) B(d) No child nodeI would like to ask this question from 1 in division Trees of Data Structures & Algorithms IThe question was posed to me in an interview for job. |
|
Answer» CORRECT answer is (d) No CHILD node For EXPLANATION: SINCE Node D is the Leaf node of the above ternary tree and leaf node has no child node. So there is no child node for Node D in the above ternary tree. |
|