📜  门|门CS 2011 |问题 11

📅  最后修改于: 2021-09-26 04:29:03             🧑  作者: Mango

计算机处理多个中断源,其中以下与此问题相关。

. 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 when a key is 
  pressed or released)
. Interrupt from Hard Disk(raises interrupt when a disk 
  read is completed)

其中哪一项将以最高优先级处理?
(A)从硬盘中断
(B)来自鼠标的中断
(C)键盘中断
(D)来自 CPU 温度传感器的中断答案: (D)
说明:更高优先级的中断级别分配给请求,如果延迟或中断,可能会产生严重后果。具有高速传输的设备(例如磁盘)获得高优先级,而慢速设备(如键盘)获得低优先级(来源:Morris Mano 的计算机系统架构)

如果忽略 CPU 温度传感器的中断,将会产生严重的后果。
这个问题的测验