125k views
2 votes
Which statement about trees is false?

a.Each node in a tree contains two links.
b.The children of a node are called siblings.
c.A node with no children is called a leaf node.
d.A tree is a nonlinear, two-dimensional data structure.

User Hoaxz
by
6.6k points

1 Answer

5 votes

Answer:

The correct answer is A.

Step-by-step explanation:

B is true if the two nodes are descending from the same parent node, they are called sibling nodes.

C is true, the nodes which do not have any nodes branching from them are called leaf nodes and mark the end of that specific branch.

D is true, a node tree is defined as nonlinear set of nodes growing downwards which are linked together.

The false option is A, a node in a node tree does not have to contain at least two links, it can be a leaf node.

I hope this answer helps.

User Eraj
by
5.8k points