Bassem Aymen

Bassem Aymen

1 year ago

the root R. of the binary tree is assigned a level number of

A.1

B.-1

C.0

D.2

0
1 Comments

Discussion

UNR

Uma Natwar Ratta
9 months ago

C. 0

In a binary tree, the root node is typically assigned a level number of 0. Each subsequent level down the tree is incremented by 1, so the children of the root would be at level 1, their children at level 2, and so on.
0