Difficulty: Medium
Correct Answer: 2, 3 and 5
Explanation:
Introduction / Context:
Full-duplex Ethernet removes collisions by allowing simultaneous send and receive on twisted pairs or fiber. Knowing which device pairs can run full-duplex is essential for configuring links correctly and avoiding mismatch errors that degrade performance.
Given Data / Assumptions:
Concept / Approach:
Full-duplex requires a point-to-point link with no shared collision domain. Switch ports are full-duplex capable; hubs are not. Two modern NICs directly connected (with appropriate cabling or auto-MDI/MDI-X) can negotiate full-duplex as well. Therefore, valid full-duplex pairs are switch-to-switch, switch-to-host, and host-to-host. Hub-involved links remain half-duplex.
Step-by-Step Solution:
Eliminate any option containing a hub as an endpoint for full-duplex (1 and 4 are invalid).Confirm switch-to-switch is full-duplex capable (2).Confirm switch-to-host is full-duplex capable (5).Confirm host-to-host can run full-duplex with proper cabling (3).Combine valid pairs: 2, 3, and 5.
Verification / Alternative check:
On Cisco gear, show interfaces displays duplex settings. Two hosts linked directly (for example, lab PCs) will negotiate full-duplex if NICs and drivers support it.
Why Other Options Are Wrong:
Common Pitfalls:
Duplex mismatches (one end half, the other full) create late collisions and FCS errors. Always verify both ends negotiate or statically match.
Final Answer:
2, 3 and 5
Discussion & Comments