102k views
3 votes
In a ___ traversal of a binary tree, you begin at the root and visit nodes one level at a time

A. Inorder

B. Flat order

C. Level order

D. Straight order

1 Answer

2 votes

Answer:

The answer of the given question is Inorder.

Step-by-step explanation:

In the inorder traversal the binary tree start from the root and visited all the vertex in the tree .

The inorder follow the following Algorithm

1. Traverse in the left subtree.

2 Print the data (visit the node ).

3 Traverse in the Right subtree.

User Douglas Kazumi
by
7.0k points