389 views
1 votes
1 votes

1 Answer

2 votes
2 votes

See here  search key value of a B-tree is k=8B
 disk block size is B=512B,
 record(data) pointer is P=6B
 block pointer is i=5B  so as per our knowledge we know 
n*i+(n-1)*(k+Pr)<= disk block size    
so 
n*5+(n-1)*(8+6)<=512

 => n  <=27.68
=> n will give 27
1ans        means no. of node will be 27

and so no. of key will be 26  // here sometimes we forget to do  that (no. of key = node no. - 1)
now since each node of B tree is 69 percent full
2ans therefore  the average number of keys per node of the above tree
= 0.69 ˟ 26 =17.94  and approx we will take it 17

hope it is clear

Related questions

394
views
1 answers
1 votes
Nishisahu asked Oct 17, 2021
394 views
Consider two relations $R$ and $S$ of size $1200$ bytes and $1000$ bytes respectively. The size of a tuple in both relations is $20$ bytes. The ... loop join is used instead of block nested loop join technique to compute the natural join?
916
views
1 answers
2 votes
jatin khachane 1 asked Dec 27, 2018
916 views
The number of tables required to convert the relational schema $R(A, B, C, D, E, F, G, H)$ into $3NF$ with following functional dependency is ________$A\rightarrow DG$AB\rightarrow E$D\rightarrow C$ $E\rightarrow F$G\rightarrow H$
698
views
1 answers
1 votes
Akash Kanase asked Jan 6, 2016
698 views
Q 40). Which of the following is/are TRUE?I). Strict schedule is a cascade-less schedule and recoverable schedule.II). Every cascade-less schedule is ... . (Same is used in ans key, but no reference for it !)
468
views
0 answers
0 votes
anjali007 asked Nov 28, 2018
468 views
Consider the following schema for employees of a university database:create table rep_manager(emp_name char(20),rep_manager_name char(20),primary key emp_name,foreign ... remain in a table rep_manager after deleting the instance of Dean?