in Databases
1,221 views
1 vote
1 vote
with respect to the B+ TREE index method .select the true statements?

1 records are physically stored in primary key order

2 B+ tree use a hashing algo.

3 the index tree may become unbalanced as a result of updates

4 none of the above
in Databases
1.2k views

1 Answer

3 votes
3 votes
A is false..Clustering index on non key .

B is false (obviously B+ tree need not follow hashing function)..

C. true.

Take a B+ tree with  3 keys {1,2,3} and 2 is root.. now update root value to 10.. tree will be unbalanced..

4 Comments

tell??. wtever you know about (a) option..
0
0
sir, FOR multilevel indexing we use B or B+tree becoz these tree are height balanced tree ...sir than after some updates tree will get unbalanced but after that it will try to make it balanced na.??than how c option true...????????
0
0
But it will not remain unbalanced, it will rebalance itself. So answer should be $d$.
0
0

Related questions

2 votes
2 votes
2 answers
2