Difficulty: Easy
Correct Answer: 011
Explanation:
Introduction / Context:
SCSI devices use binary ID selection. Understanding how to set jumpers avoids bus conflicts and ensures proper device ordering on the chain.
Given Data / Assumptions:
Concept / Approach:
Counting from 0: the fourth ID is 3 in decimal (0,1,2,3). Convert 3 to binary using weights 4-2-1: 3 = 2 + 1 = 011. Therefore, enable the 2 and 1 jumpers, leave the 4 jumper off.
Step-by-Step Solution:
Verification / Alternative check:
Most SCSI devices print a truth table on the chassis. Selecting ID 3 aligns with pattern 011 on 3-bit selectors.
Why Other Options Are Wrong:
Common Pitfalls:
Misreading bit order (left-to-right vs. right-to-left), forgetting the host adapter also consumes one ID, and neglecting termination rules.
Final Answer:
011
Discussion & Comments