adplus-dvertising
frame-decoration

Question

A binary tree is a special type of tree, which can either be empty or have a finite set of nodes, such that, one of the nodes is designated as the root node and the remaining nodes are partitioned into sub trees of the root nodes known as__________.

a.

Left sub tree

b.

Right sub tree

c.

Both (a) and (b)

d.

Heap tree

Answer: (c).Both (a) and (b)

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. A binary tree is a special type of tree, which can either be empty or have a finite set of nodes, such that, one of the nodes is designated as the root node and the remaining nodes...

Similar Questions

Discover Related MCQs

Q. Unlike a general tree, each node in a binary tree is restricted to have at the most __________child nodes only.

Q. A binary tree is a ________data structure; each node belongs to a particular level number.

Q. The nodes belonging to the same parent node are known as_______.

Q. The depth of a binary tree is the highest level number of any ______ in the binary tree.

Q. Which line connects any two nodes?

Q. The degree of a node is equal to the number of its__________.

Q. The nodes belonging to the same parent node are known as_________.

Q. A binary tree is said to be a complete binary tree if all the leaf nodes of the tree are at ________.

Q. A binary tree is said to be an extended binary tree (also known as 2-tree) if all of its nodes are of _______.

Q. Like _________- binary trees can also be represented in two ways in the memory—array (sequential) representation and linked representation.

Q. In the array representation, what is represented sequentially in memory using a single one-dimensional
array?

Q. The linked representation of a binary tree is implemented by using a linked list having an_________.

Q. Traversing a binary tree refers to the process of visiting each and every node of the tree exactly how many times?

Q. In how many different ways can a tree be traversed?

Q. In pre-order traversal, the root node is visited before traversing its________subtrees.

Q. In which traversal, the root node is visited after the traversal of its left subtree and before the traversal of its right subtree?

Q. Elements in a nonlinear data structure do not form a sequence for example_________.

Q. One way is to have the linear relationship between the elements by means of sequential memory locations and such linear structures are called ______.

Q. What is one of the most common operations that is performed on trees?

Q. In which tree, the right NULL pointer of each node (not having a right child node) points to its in-order successor?