answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What relation holds between priority and first come first serve algorithm?
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 relation between priority and shortest job first?

Priority scheduling is a CPU scheduling algorithm where each process has a priority associated with it. Shortest job first (SJF) is a scheduling algorithm where the process with the shortest burst time is scheduled first. The relationship between the two is that a priority scheduling algorithm can be used where the priority of a process is determined by its burst time, effectively making it similar to a shortest job first algorithm.


What is the difference between First class shipping and Priority Shipping?

Priority shipping is faster.


After an Ethernet collision when the backoff algorithm is invoked which device has priority to transmit?

any device in the collision domain whose backoff timer expires first


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.


Explain first fit algorithm?

A "first fit" algorithm is any algorithm which doesn't care about how "good" a solution is, it just returns the first one that works.


When was First Priority created?

First Priority was created in 1996.


Is there any relation between first national bank and financier?

no


What is difference between UPS 1st class and priority?

Ups doesn't have first class or priority. That's the USPS (united states postal service or post office for short). First class and priority are pretty much the same service but first class has a maximum weight of 13ozs. So a package has to go priority in order to get there in 2-3 days.


A sentence for priority?

my dogs first priority is food.


Who is the first discovered the relation between motion and force?

the answer is sir. isaac newton galileo galilei explained only the relation between motion and force


What is the difference between a priority queue and a circular queue?

A circular queue is similar to the normal queue with the difference that queue is circular queue ; that is pointer rear can point to beginning of the queue when it reaches at the end of the queue. A priority queue is a queue in which each element is inserted or deleted on the basis of their priority. A higher priority element is added first before any lower priority element. If in case priority of two element is same then they are added to the queue on FCFS basis (first come first serve).