answersLogoWhite

0


Best Answer

The first step is to convert the logical device number into a physical address. Then you must schedule an IO request. You improve the seek time by testing the IO numbers to see what gives the best results.

User Avatar

Wiki User

11y ago

Still curious? Ask our experts.

Chat with our AI personalities

ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi
SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran

Add your answer:

Earn +20 pts
Q: How do you calculate shortest seek time first algorithm Average?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What relation holds between priority and shortest job first algorithm?

what is the diffrnce


What is Dijkstra's algorithm?

Dijkstra's algorithm is used by the OSPF and the IS-IS routing protocols. The last three letters in OSPF (SPF) mean "shortest path first", which is an alternative name for Dijkstra's algorithm.


What do you mean by scheduling algorithm in OS?

its the algorithm that tells the os what to process next.goes according to :shortest job firstshortest remaining time firstround robin- first in first out system


What are the differences between Dijkstra's algorithm and Breadth-First Search (BFS) when it comes to finding the shortest path in a graph?

Dijkstra's algorithm and Breadth-First Search (BFS) are both used to find the shortest path in a graph, but they have key differences. Dijkstra's algorithm considers the weight of edges, making it suitable for graphs with weighted edges, while BFS treats all edges as having the same weight. Additionally, Dijkstra's algorithm guarantees the shortest path, but BFS may not always find the shortest path in weighted graphs.


What does the Cisco IOS use to calculate the OSPF cost to a destination network?

OSPF stands for open shortest path first. OSPF is an exterior routing protocol. OSPF uses Path vector routing algorithm.


Why is dijkstra's algorithm not suitable for distributed applications with large number of distributed nodes?

"OSPF detects changes in the topology, such as link failures, very quickly and converges on a new loop-free routing structure within seconds. It computes the shortest path tree for each route using a method based on Dijkstra's algorithm, a shortest path first algorithm."


What are the key differences between Breadth-First Search (BFS) and Dijkstra's algorithm, and how do these differences impact their respective efficiencies in finding the shortest path in a graph?

Breadth-First Search (BFS) explores all neighbors of a node before moving on to the next level, while Dijkstra's algorithm prioritizes nodes based on their distance from the start node. This means BFS may not always find the shortest path, especially in weighted graphs, whereas Dijkstra's algorithm guarantees the shortest path. Dijkstra's algorithm is more efficient in finding the shortest path in weighted graphs due to its priority queue implementation, while BFS is more efficient in unweighted graphs.


What relation between priority and shortest job first?

In that work system, the shortest job gets higher priority because more gets accomplished in any amount of time. If you have two hours to do 4 tasks and one task will take five minutes, one will take 30 minutes, one will take an hour and one will take an hour and a half, by using the shortest job first method, you will accomplish three tasks in those two hours and part of the fourth task. If you do the longest job first, you will accomplish the task that takes an hour and a half, then only part of the one hour task, but nothing on the 5 minute or 30 minute tasks. That means that by doing the shortest jobs first, you will accomplish three times as many tasks as you will by doing the longest jobs first.


How to write an algorithm that accepts five numbers and displays the sum and average of the numbers?

1.Start Algorithm 2.Enter first number 3.Enter second number 4.Enter third number 5.Enter fourth number 6.Enter fifth number 7.Add five number 8.display five number / 2 9.Display result 10.End Algorithm


What is the relationship between Dijkstra's algorithm and breadth-first search in graph traversal?

Dijkstra's algorithm is a more advanced version of breadth-first search in graph traversal. While both algorithms explore nodes in a graph, Dijkstra's algorithm considers the weight of edges to find the shortest path, whereas breadth-first search simply explores nodes in a level-by-level manner.


What are the advantages of shortest job run first?

Average wait Time of processes is minimized


What is difference between SJF and SRTF?

Shortest Job First (SJF) scheduling algorithm selects the process with the smallest burst time for execution next, which helps in reducing average waiting time. Shortest Remaining Time First (SRTF), on the other hand, preempts the currently running process if a new process with a smaller burst time arrives, resulting in even lower waiting times but with increased context switching.