distinguish between interrupts and exceptions?
Answer Posted / 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 |
Post New Answer View All Answers
Can you explain a little bit about command substitution?
What are some command words?
How do I clear my terminal history?
What is the command to find hidden files in the current directory?
What is grep command in unix with examples?
Enlist some filename manipulation commands in unix.
What is a bash command?
What is unix command?
What is sed awk grep?
What are grep patterns?
Give the command for finding the current date.
What are reported commands?
What is command statement?
What is the unix command to confirm a remote host is alive or not?
Write a command to kill the last background job?