Why Modern OS are interrupt driven?Give an example
Answer Posted / 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 |
Post New Answer View All Answers
Write programs for String Reversal & Palindrome check
How can I make sure that my program is the only one accessing a file?
What are the different file extensions involved when programming in C?
main() { printf("hello"); fork(); }
What is the use of clrscr?
Explain what is output redirection?
What is indirection in c?
Explain #pragma statements.
Are there constructors in c?
What is difference between Structure and Unions?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the explanation for prototype function in c?
In a header file whether functions are declared or defined?