Difficulty: Easy
Correct Answer: 0x360
Explanation:
Introduction / Context:
Older ISA NICs required selecting I/O base addresses and IRQs that did not conflict with existing devices. Recognizing common ranges helps avoid clashes with serial and parallel ports.
Given Data / Assumptions:
Concept / Approach:
Many NICs used I/O bases like 0x300, 0x320, 0x340, and 0x360. Meanwhile, 0x3F8 (COM1) and 0x2F8 (COM2) are serial ports, and 0x378 is LPT1. Selecting 0x360 avoids conflicts and aligns with common NIC settings.
Step-by-Step Solution:
Verification / Alternative check:
Vendor manuals for ISA NICs cite these bases as defaults/options. System resource viewers confirm conflicts if a reserved address is selected.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to change IRQ alongside I/O base; ignoring BIOS/OS resource reservations; confusing decimal/hex notation.
Final Answer:
0x360
Discussion & Comments