402 views
3 votes
3 votes

Consider a disk system with 101(0 to 100) cylinders. The requests to access cylinders occurs in sequence as:
15, 75, 49, 65, 93, 80, 10
If the head is currently at 60. What is the additional distance that will be traversed by head when C-SCAN algorithm is used compared to SCAN algorithm is ________. (Assume SCAN algorithm head moves towards 100 when it starts execution).

in C-scan algorithm  what is distance traversed by head  (100-60)+(49-0) is it true or

(100-60)+100+(49-0) this is true 

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
sreenivas.s1995 asked Jan 31, 2019
361 views
Does increasing number of threads decrease total waiting time of the process in terms of round robin scheduling or does it remain the same?Can you please explain why
0 votes
0 votes
1 answer
2
pream sagar asked Sep 10, 2018
1,109 views
why SJF scheduling algorithm frequently used in long term scheduling.
2 votes
2 votes
0 answers
3
ADITYA CHAURASIYA 5 asked Jan 9, 2018
396 views
0 votes
0 votes
0 answers
4
sreenivas.s1995 asked Jan 30, 2019
457 views
Which phase of the compiler detects the error?#include<stdio.h>int main(){printf(“%d”,2..3);return 0;}I think lexical analyzer am i correct?