answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Why is important for the scheduler to distinguish IO and ndash bound programs from CPU and ndash bound programs?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Movies & Television

What is bound report?

define bound report define bound report


What was the Production Budget for Bound?

The Production Budget for Bound was $4,500,000.


What is the duration of Bound film?

The duration of Bound - film - is 1.8 hours.


How much money did Bound gross worldwide?

Bound grossed $7,011,317 worldwide.


When was Bound - film - created?

Bound - film - was created on 1996-08-31.

Related questions

Why is it important for the scheduler to distinguish IO-bound programs from CPU-bound programs?

Any CPU will have an I/O which en ply external devices data transfers. The CPU internally will process data. While both are data bus they are definitely not the same


Difference between io bound and CPU bound?

I/O-bound programs have the property of performing only a small amount of computation before performing IO. Such programs typically do not use up their entire CPU quantum. CPU-bound programs, on the other hand, use their entire quantum without performing any blocking IO operations. Consequently, one could make better use of the computer's resources by giving higher priority to I/O-bound programs and allow them to execute ahead of the CPU-bound programs.


What is difference between a scheduler and a dispatcher?

DISPATCHER?The dispatcher is the module that gives control of the CPU to the process selected by the short-time scheduler(selects from among the processes that are ready to execute).The function involves :Swithching contextSwitching to user modeJumping to the proper location in the user program to restart that program.SCHEDULER? Normally there are 3 types of schedulers are available in operating systems.1. Long term scheduler2. Mid term scheduler3. Short term schedulerThe short term scheduler is also called as the dispatcher which selects the process from the waiting queue and allocates the CPU to that process.Whereas the Long term scheduler (Admission scheduler) decides which process should be placed in the main memory and updates the waiting queue. This long scheduler is important in the large bound systems like super computers and may not be used frequently as the short term scheduler.The mis term scheduler available in all systems which is responsible for the swapping in and out operations which means loading the process into, main memory from secondary memory (swap in) and take out the process from main memory and store it into the secondary memory (swap out).


Which of these programs was designed to help students from low income families go to college?

upward bound


What is a cell with complex membrane bound organelles called?

You may be looking for the term "eukaryotic," to distinguish from prokaryotic cells that do not possess membrane-bound organelles.http://en.wikipedia.org/wiki/Eukaryotichttp://en.wikipedia.org/wiki/Prokaryotic


What a major characteristics distinguish eubacteria from protista?

Eubacteria are prokaryotic, meaning that they lack a nucleus or organelles bound to the membrane. Protists are eukaryotic, meaning that they do have the nucleus.


Is management culture bound?

Management should not be bound by culture. It is important that managers recognizes the culture and adapt to work within it.


Why was religion important to the city states of mesopotamia?

It was important to them because it bound them together into a common way of life.


What kind of programs does Outward Bound offer?

Outward Bound aims at getting kids outdoors and allowing them to experience nature. They offer activities such as sailing, camping, hiking, and a general social confidence building environment.


What could be used to distinguish between an organism in the domain bacteria and one in the domain eukarya?

One way to distinguish between an organism in the domain Bacteria and one in the domain Eukarya is by looking at their cell structure. Bacteria have prokaryotic cells without a nucleus or membrane-bound organelles, while Eukarya have eukaryotic cells with a nucleus and membrane-bound organelles. Additionally, the presence of peptidoglycan in the cell wall is a characteristic feature of bacteria, which is absent in eukaryotic organisms.


Which site can provide big c plus plus programs?

It depends what type of programs you're looking for, but CodeProject, CodeGuru and CodeSource have thousands of projects you can play around with. They're bound to have something that'll pique your interest.


Distinguish between a CPU-bound process and an io- bound process?

A program is CPU bound if it would go faster if the CPU were faster, i.e. it spends the majority of its time simply using the CPU (doing calculations). A program that computes new digits of π will typically be CPU-bound, it's just crunching numbers. A program is I/O bound if it would go faster if the I/O subsystem was faster. Which exact I/O system is meant can vary; I typically associate it with disk. A program that looks through a huge file for some data will often be I/O bound, since the bottleneck is then the reading of the data from disk.