edited by
1,058 views

1 Answer

2 votes
2 votes
option C will be correct.

At level 0 no. of nodes = 2^0

At level 1 no. of nodes = 2^1

At level 2 no. of nodes = 2^2

similarly,At level h-1 no. of nodes = 2^(h-1)

sum them 2^0 + 2^1 + 2^2 ..... + 2^(h -1)

sum = 2^(h +1) - 1

no. of nodes = 2^(h + 1) - 1
Answer:

Related questions

2 votes
2 votes
2 answers
1
admin asked Apr 1, 2020
1,022 views
The number of possible binary trees with $4$ nodes is$12$$13$$14$$15$
1 votes
1 votes
2 answers
2
admin asked Apr 1, 2020
699 views
Which of the following is useful in traversing a given graph by breadth first search?StackSetListQueue
1 votes
1 votes
2 answers
3
admin asked Apr 1, 2020
3,738 views
If queue is implemented using arrays, what would be the worst run time complexity of queue and dequeue operations?$O(n),O(n)$$O(n),O(1)$$O(1),O(n)$$O(1),O(1)$
1 votes
1 votes
2 answers
4