distinguish between interrupts and exceptions?

Answers were Sorted based on User's Feedback



distinguish between interrupts and exceptions?..

Answer / sairam kulkarni

Interrupts and exceptions both alter the program flow. The
difference
between the two is that interrupts are used to handle
external events
(serial ports, keyboard) and exceptions are used to handle
instruction
faults, (division by zero, undefined opcode).

Interrupts are handled by the processor after finishing the
current
instruction. If it finds a signal on its interrupt pin, it
will look up
the address of the interrupt handler in the interrupt table
and pass
that routine control. After returning from the interrupt
handler
routine, it will resume program execution at the
instruction after the
interrupted instruction.

Exceptions on the other hand are divided into three kinds.
These are
Faults, Traps and Aborts. Faults are detected and serviced
by the
processor before the faulting instructions. Traps are
serviced after
the instruction causing the trap. User defined interrupts
go into this
category and can be said to be traps; this includes the MS-
DOS INT 21h
software interrupt, for example. Aborts are used only to
signal severe
system problems, when operation is no longer possible.

Is This Answer Correct ?    52 Yes 5 No

distinguish between interrupts and exceptions?..

Answer / santosh

For example, when you are eating dinner at home, suddenly the phone rings, you have to pick up the phone, because it could be an emergency, that is an interrupt. For the exception, it is more like when you are eating, you suddenly find half of dead cockroach in you food, errr~~~~~. After answering the phone or vomiting, we have to go back to our normal life anyway. Hopefully you still have appetite after that "exception".

In a nut shell, interrupts and exceptions both stop the processor's processing flow and force it to do something else and after that it will go back to the normal flow. The difference between interrupts and exceptions is interrupts are triggered by external source, like hardwares or more specific, the keyboard input, system timer etc, but exceptions are caused by the execution of instruction under predefined condition, like divide by zero fault, and there are exceptions for exceptions :), like INT 3 is an exception can be used by user tasks for debuging intentionally.

Is This Answer Correct ?    21 Yes 1 No

Post New Answer

More Unix Commands Interview Questions

How to replace the exact word in vi editor?? suppose a file contains words like amaze,amazed,amazement in some of the line.But i want to replace only 'amaze' with delight but don't wanna replace amazed or amazement. thanks

6 Answers   Polaris, Tech Mahindra,


Which command should you use to find the remaining disk space in unix server?

0 Answers  


A file has 1000 lines and i want to display only 1st line how to do it? pls ..tel me

7 Answers   CTS,


What is the unix command to confirm a remote host is alive or not?

0 Answers  


in UNIX,How to copy file into directory?

5 Answers  






How can you see the command line history?

0 Answers  


what is virtual machine?

2 Answers   Infosys,


What is the comma to display different lines that are found when compare two files?

0 Answers  


in a growing log file how will you see the 1st 99 lines?

7 Answers  


distinguish between user mode and kernel mode?

4 Answers   Infosys,


What is an Environment Variable?

4 Answers   CTS,


What command is used to switching between users in unix?

0 Answers  


Categories