edited by
15,454 views
28 28 votes

A computer handles several interrupt sources of which of the following are relevant for this question.

  • Interrupt from CPU temperature sensor (raises interrupt if CPU temperature is too high)
  • Interrupt from Mouse (raises Interrupt if the mouse is moved or a button is pressed)
  • Interrupt from Keyboard (raises Interrupt if a key is pressed or released)
  • Interrupt from Hard Disk (raises Interrupt when a disk read is completed)
Which one of these will be handled at the HIGHEST priority?
  1. Interrupt from Hard Disk
  2. Interrupt from Mouse
  3. Interrupt from Keyboard
  4. Interrupt from CPU temperature sensor

3 Answers

Best answer
85 85 votes

Answer should be (D) Higher priority interrupt levels are assigned to requests which, if delayed or interrupted,could have serious consequences. Devices with high speed transfer such as magnetic disks are given high priority, and slow devices such as keyboard receive low priority. We know that mouse pointer movements are more frequent than keyboard ticks. So its obvious that its data transfer rate is higher than keyboard. Delaying a CPU temperature sensor could have serious consequences, overheat can damage CPU circuitry. From the above information we can conclude that priorities are-

CPU temperature sensor > Hard Disk > Mouse > Keyboard

edited by
4 4 votes

Answer: D

The CPU temperature sensor interrupt is the most critical because it is related to the safety of the system. If the CPU temperature exceeds safe levels, immediate action is required to prevent hardware damage, such as throttling the CPU or shutting down the system.

  • Hard Disk, Mouse, and Keyboard interrupts are important for regular operation, but none of them involve an immediate threat to the hardware's integrity. Therefore, they are handled with lower priority compared to the CPU temperature sensor.

Thus, the interrupt from the CPU temperature sensor would be handled with the highest priority.

2 2 votes

Ans is D

Kyuki mouse & keyboard & hard disk me interrupt hoga to bas operation perform nhi honge but CPU temprature high hoga so Condition of CPU failure ​​​​​​​​​​

Answer:
Position:
Show:

Related questions

74 74 votes
4 answers 4 answers
24.2k
24.2k views
go_editor asked Sep 29, 2014
24,196 views
On a non-pipelined sequential processor, a program segment, which is the part of the interrupt service routine, is given to transfer $500$ bytes from an I/O device to mem...
55 55 votes
2 answers 2 answers
19.7k
19.7k views
go_editor asked Sep 29, 2014
19,730 views
An application loads $100$ libraries at startup. Loading each library requires exactly one disk access. The seek time of the disk to a random location is given as $10$ ms...
40 40 votes
5 answers 5 answers
20.1k
20.1k views
go_editor asked Sep 29, 2014
20,066 views
Consider the following table of arrival time and burst time for three processes $P0, P1$ and $P2.$$$\small \begin{array}{|c|c|c|} \hline \textbf{Process} & \textbf{Arriva...
59 59 votes
7 answers 7 answers
38.4k
38.4k views
go_editor asked Sep 29, 2014
38,388 views
Let the page fault service time be $10$ milliseconds(ms) in a computer with average memory access time being $20$ nanoseconds (ns). If one page fault is generated every $...