Difficulty: Easy
Correct Answer: An unused SCSI address
Explanation:
Introduction / Context:
SCSI (Small Computer System Interface) devices share a common bus where each device must have a unique SCSI ID to avoid contention. Properly assigning the SCSI ID when adding a CD-ROM ensures the host adapter can enumerate all devices without conflicts.
Given Data / Assumptions:
Concept / Approach:
On a SCSI chain, every device (including the host adapter) must have a unique ID. The CD-ROM's SCSI ID must not duplicate any existing ID. Many systems reserve specific IDs (e.g., ID 7 for the host, ID 0 for the boot hard disk), but the universal requirement is uniqueness, not a fixed number for optical drives.
Step-by-Step Solution:
Verification / Alternative check:
If the adapter BIOS or OS detects two devices with the same ID, the bus will exhibit errors or one device will be missing. After assigning a unique ID, both devices appear and function normally, confirming the rule.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to adjust termination when inserting a new middle device, assuming the optical drive must be ID 1, and overlooking that the host adapter often occupies ID 7 on narrow SCSI.
Final Answer:
An unused SCSI address
Discussion & Comments