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
What is a ternary operator in c?
what is a constant pointer in C
How does #define work?
Is c still used?
Why c is called top down?
What is the return type of sizeof?
What is the use of a semicolon (;) at the end of every program statement?
please give me some tips for the placement in the TCS.
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What's the total generic pointer type?
What is character constants?
Write a program to reverse a given number in c language?
What is a string?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.