...
Database-Management-System
August 29, 2024
Software-requirements
August 29, 2024
Database-Management-System
August 29, 2024
Software-requirements
August 29, 2024

B-Trees

Question 2
The number of disk pages access in B-Tree search, where ‘h’ is height, ‘n’ is the number of keys, and ‘t’ is the minimum degree, is:
A
θ(log​ n​ h*t)
B
θ(log​ t​ n*h)
C
θ(log​ h​ n)
D
θ(log​ t​ n)
Question 2 Explanation: 
The number of disk pages access in B-Tree search, where ‘h’ is height, ‘n’ is the number of keys, and ‘t’ is the minimum degree, is θ(log​ t​ n).
Note: B-Tree search operation best,average and worst case will take θ(logn).
Correct Answer: D
Question 2 Explanation: 
The number of disk pages access in B-Tree search, where ‘h’ is height, ‘n’ is the number of keys, and ‘t’ is the minimum degree, is θ(log​ t​ n).
Note: B-Tree search operation best,average and worst case will take θ(logn).

Leave a Reply

Your email address will not be published. Required fields are marked *