Q 29. A 5-ary tree is tree in which every internal node has exactly 5 children. The number of
Answer: (2) 33
In a complete n-ary tree,
Here n = 5, I = 8
Therefore, L = (5-1) * 8 + 1 = 4 * 8 + 1 = 33
In graph theory, a k-ary tree is a rooted tree in which each node has no more than k children. It is also sometimes known as a k-way tree, an N-ary tree, or an M-ary tree. A binary tree is the special case where k=2.


