Difficulty: Easy
Correct Answer: serial
Explanation:
Introduction:
Modern digital communication between computers—whether across copper, fiber, or radio—overwhelmingly uses serial transmission. Even when internal buses may be parallel, links between devices and systems favor serial signaling for distance, cost, and electromagnetic performance reasons. Recognizing why serial dominates clarifies design choices from USB and PCIe to Ethernet and optical transport networks.
Given Data / Assumptions:
Concept / Approach:
Serial links send bits sequentially over one (or a few differential) pairs, enabling simpler connectors, tighter impedance control, and better immunity to skew than wide parallel ribbons. Techniques like differential signaling, clock recovery, encoding (e.g., 8b/10b, 64b/66b), and equalization unlock very high data rates per lane. Parallel signaling suffers from inter-pair skew and crosstalk that grow with frequency and distance, making it impractical for long or fast off-board connections.
Step-by-Step Solution:
1) Compare physical constraints: long parallel buses require tight skew control; serial avoids this by using few conductors.2) Note standards: Ethernet, USB, SATA, PCIe, Thunderbolt, and optical systems all employ serial lanes.3) Consider scalability: aggregate bandwidth is achieved by lane bonding (x4, x8, x16) while retaining serial advantages.4) Conclude that serial transmission is the near-universal choice for inter-computer links.
Verification / Alternative check:
Observe that once-parallel interfaces (e.g., PATA) were replaced by serial counterparts (SATA) to overcome speed and cabling limitations.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming “parallel is always faster”; at scale and distance, serial with proper coding and equalization wins decisively.
Final Answer:
serial
Discussion & Comments