InterviewSolution
Saved Bookmarks
| 1. |
Which node is the child node of Node D in the following ternary tree?(a) A(b) C(c) G(d) HMy enquiry is from 1 topic in portion Trees of Data Structures & Algorithms II have been asked this question in an online quiz. |
|
Answer» CORRECT OPTION is (d) H The EXPLANATION is: The CHILD node is the node that has a directed path from its parent node. Since Node D has a direct path to Node H, So Node H is the Child node. |
|