计算机可以处理多个中断源,以下中断源与该问题有关。
. 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温度传感器的中断,将导致严重后果。
这个问题的测验