Difficulty: Easy
Correct Answer: 9
Explanation:
Introduction / Context:Classic PCs used two cascaded 8259A Programmable Interrupt Controllers (PICs) to expand available hardware interrupts. Understanding the mapping helps interpret device configuration and troubleshoot conflicts in legacy systems.
Given Data / Assumptions:
Concept / Approach:
In the PC/AT design, IRQ2 on the master PIC is reserved for cascading to the slave PIC. Devices that would have used IRQ2 are instead serviced through IRQ9, which is tied into the cascade mechanism. Therefore, OS/BIOS typically report such devices as using IRQ9.
Step-by-Step Solution:
Two 8259A PICs are arranged: master handles IRQ0–IRQ7; slave handles IRQ8–IRQ15.The slave’s interrupt request is wired to the master’s IRQ2 line.Consequently, requests on the slave appear to the CPU through the master as IRQ2, remapped and reported as IRQ9.Hence, devices traditionally associated with IRQ2 are recognized as IRQ9 on AT-class systems.Verification / Alternative check:
Review BIOS setup and OS device manager on vintage systems; devices expected on IRQ2 are listed under IRQ9. Technical references for the PC/AT confirm this cascade mapping.
Why Other Options Are Wrong:
IRQ11, IRQ13, and IRQ15 are separate lines on the slave PIC and not the canonical remap target for IRQ2. “None of the above” is incorrect because 9 is the established mapping.
Common Pitfalls:
Assuming IRQ2 is freely available on AT-class machines, or forgetting that some adapters labeled “IRQ2/9” simply acknowledge this mapping.
Final Answer:
9
Discussion & Comments