0
You visited us 0 times! Enjoying our articles? Unlock Full Access!
Question

Five node splitting operations occurred when an entry is inserted into a B-tree. Then how many nodes are written?

A
7
B
11
C
14
D
5
Solution
Verified by Toppr

Correct option is C. 11

Was this answer helpful?
0
Similar Questions
Q1
In the balanced binary tree in the figure given below, how many nodes will become unbalanced when a node is inserted as a child of the node "g"?


Ā© Ā©O
View Solution
Q2
The following key values are inserted into a B+ - tree in which order of the internal nodes is 3, and that of the leaf nodes is 2, in the sequence given below.

The order of internal nodes is the maximum number of tree pointers in each node and the order of leaf nodes is the maximum number of data items that can be stored in it. The B+, tree is initially empty 10, 3, 6, 8, 4, 2, 1. The number of times leaf nodes would get split up as a result of these insertions is
View Solution
Q3
How many trees can be formed using 3 nodes
View Solution
Q4

How Many Nodes Are In An Orbital?


View Solution
Q5
Assume that the following values are inserted into binary search tree in the given order : 40, 50, 70, 20, 30, 10, 60, 90, 80, 100. Consider the following function:

Find the output printed by the above function, if the root of the binary search tree is passed to the "tree" function.

Void find (Node*root)
{
if (root == NULL) return;
find (root left)
find (root right);
printf("%d" , root data);
}
struct node
{
int data;
struct node * left;
struct node * right;
} Node;

View Solution