Why Modern OS are interrupt driven?Give an example
Answers were Sorted based on User's Feedback
Answer / shankar
An interrupt driven device sends an interrupt request to the computer, which is then serviced by Internet service routine(ISR).
To effectively manage many processes the core of operating system makes use of what is known as interrupts.
This is a signal to a processor indicating that an asynchronous event has occurred. Here the current sequence of instructions is temporarily suspended, and a sequence appropriate to the interruption is started in its place. Its purpose is to alert the operating system when any special event occurs so that it can suspend its current activity and deal appropriately with the new situation
Usually an interrupt gives a signal from a device attached to a computer or from a program within the computer that causes the main program that operates the computer (the operating system) to stop and figure out what to do next. Almost all personal (or larger) computers today are interrupt-driven - that is, they start down the list of computer instructions in one program (perhaps an application such as a word processor) and keep running the instructions until either (A) they can't go any further or (B) an interrupt signal is sensed. After the interrupt signal is sensed, the computer either resumes running the program it was running or begins running another program
| Is This Answer Correct ? | 21 Yes | 9 No |
Answer / imrana
os is interrupt driven software this means that if there is no interrupt then the system will be die
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / banavathvishnu
There are 3 types of OS
1. Interrupt driven
2. Polling
3. Event driven
In Interrupt driven OS CPU clock is handed over to
Interrupt only when the interrupt is occured.
In Polling, CPU clock should wait until an event is occured
is very expencise wrt to CPU clock.
| Is This Answer Correct ? | 16 Yes | 19 No |
What is type qualifiers?
please explain every phase in the "SDLC" in the dotnet.
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Differentiate between full, complete & perfect binary trees.
What is a MAC Address?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
What is echo in c programming?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
What is call by value in c?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.