retagged by
2,733 views

2 Answers

3 votes
3 votes
We have -

capacity = #surfaces x #cylinders x #sectors x #capacity_of_sector

Putting all the values, we get -

$2^{39} = 2^5 * \text{ #cylinders } * 2^{12} * 2^{10}$

$\text{#cylinders} = 2^{39-27} = 2^{12} = 4096$

Answer - 4096
3 votes
3 votes

Given that:

  • Hard disk capacity= $512$GB=$2^9*2^{30}=2^{39}$ Byte
  • Number of surface=$32=2^5$
  • Sector/track=$4096=2^{12}$
  • sector size/capacity=$1024=2^{10}$ Byte
  • Number of cylinder =$x$

 we know that:

Disk capacity=Number of surface* number of track/surface* number of sector/track*number of byte/sector

$\implies2^{39}=2^5*x*2^{12}*2^{10}$
$\implies2^{39}=x*2^{12+10+5}$
$\implies2^{39}=x*2^{27}$
$\implies x=\frac{2^{39}}{2^{27}}=2^{12}=4096$

$\therefore$ the number of cylinders is $4096.$

Answer:

Related questions

3.7k
views
2 answers
4 votes
Arjun asked Feb 16
3,655 views
Consider the following code snippet using the fork () and wait () system calls. Assume that the code compiles and runs correctly, and that the system calls ... - ; }The total number of times the printf statement is executed is __________.
3.5k
views
3 answers
2 votes
Arjun asked Feb 16
3,519 views
Consider a memory management system that uses a page size of $2 \mathrm{~KB}$. Assume that both the physical and virtual addresses start from $0$. ... format) corresponding to the virtual address $2500$ (in decimal format) is ___________.
2.5k
views
3 answers
3 votes
Arjun asked Feb 16
2,534 views
Let $A$ and $B$ be non-empty finite sets such that there exist one-to-one and onto functions $\text{(i)}$ from $A$ to $B$ and $\text{(ii)}$ from $A \times A$ to $A \cup B$. The number of possible values of $\text{|A|}$ is ___________.
3.5k
views
1 answers
4 votes
Arjun asked Feb 16
3,548 views
Consider the operator precedence and associativity rules for the integer arithmetic operators given in the table below.Operator PrecedenceAssociativity+Highest Left-HighRight*MediumRight/ ... as per the above rules is ________.