how to estimate the disk access time?
e.g. the time between read one byte and another byte in the
disk.
Answer Posted / prasad jvv
Disks are block devices. Mean one block of data can be read
at one point of time. So there is no point of time between
read one byte and another byte. If intended to calculate
time to read one byte, first of all we need to calculate
the time required to read one block and devide that by
block size.
Access Time = Command Overhead Time + Seek Time + Settle
Time + Latency
This equation is not universal standard.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Why is void main used?
Which is better malloc or calloc?
Explain what are reserved words?
What are terms in math?
What is unary operator?
How can I change the size of the dynamically allocated array?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How can I manipulate individual bits?
Can we change the value of constant variable in c?
What are the similarities between c and c++?
Can we compile a program without main() function?
find out largest elemant of diagonalmatrix
Why is %d used in c?
Explain how do you search data in a data file using random access method?