Difficulty: Easy
Correct Answer: one byte at a time
Explanation:
Introduction / Context:
Legacy printer ports are called “parallel” because they transmit multiple bits simultaneously. Understanding how much data moves per strobe clarifies cabling, timing, and why parallel ports historically offered higher throughput than serial ports of the same era.
Given Data / Assumptions:
Concept / Approach:
With 8 dedicated data lines, one strobe transfers 8 bits simultaneously, which is exactly one byte. Control and status lines manage flow control and acknowledgments. Even advanced modes conceptually operate around byte streams, though they may burst more efficiently.
Step-by-Step Solution:
Verification / Alternative check:
Parallel port timing diagrams show strobe and acknowledge around an 8-bit data value on D0–D7. Printer and PC technical manuals reinforce this byte-wide transfer model.
Why Other Options Are Wrong:
One bit at a time: That describes serial links, not parallel. 8 bytes at a time / 16,555 bytes at a time: Not aligned with the physical data pins or protocol handshakes. None of the above: Incorrect because one choice is accurate.
Common Pitfalls:
Assuming “parallel” means arbitrary multi-byte chunks; overlooking handshake overhead that affects effective throughput versus theoretical width.
Final Answer:
one byte at a time
Discussion & Comments