Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
Digital information can be sent in parallel (multiple bits simultaneously on multiple conductors) or serially (one bit at a time over a single lane). Understanding their speed trade-offs is important in bus design, PCB layout, and interface selection.
Given Data / Assumptions:
Concept / Approach:
Throughput for a k-bit-wide parallel bus at clock f is approximately k * f bits/s, whereas a single-lane serial link at the same f is ~1 * f bits/s. Thus, absent non-idealities, parallel is faster. In practice, high-speed designs increasingly prefer multi-gigabit serial with embedded clocks to avoid skew and EMI issues, but the theoretical parallel advantage with equal edge rates remains.
Step-by-Step Solution:
Verification / Alternative check:
Historical memory buses (parallel) vs early serial links show higher raw width-driven throughput. Modern serial compensates by using very high line rates and multiple lanes.
Why Other Options Are Wrong:
“Incorrect” ignores the width factor. Frequency caps (e.g., “below 1 MHz”) or media qualifiers (fiber only) are unnecessary caveats to the basic comparison.
Common Pitfalls:
Assuming parallel is always better; in practice, skew, pin count, and EMI may make serial preferable at very high data rates.
Final Answer:
Correct
Discussion & Comments