InterviewSolution
Saved Bookmarks
| 1. |
Is Node A sibling of Node D in the given ternary tree?(a) True(b) FalseI would like to ask this question from Ternary Tree topic in division Trees of Data Structures & Algorithms II have been asked this question in an interview. |
|
Answer» CORRECT choice is (B) False The BEST I can explain: Node B, Node C are the siblings of Node D while Node A is the PARENT node of Node D. |
|