InterviewSolution
Saved Bookmarks
| 1. |
What is the Height of the root node of K-ary tree?(a) 1(b) 2(c) 3(d) 0Asked question is from K-ary tree in division Trees of Data Structures & Algorithms II have been asked this question in semester exam. |
|
Answer» CORRECT OPTION is (d) 0 For explanation: Height of K-ary TREE is DEFINED as the length of path from root to deepest node in tree. Therefore, height of root node in K-ary tree is 0. |
|