Difficulty: Medium
Correct Answer: 2
Explanation:
Introduction:
Real-world serial links are built from conductors that carry data and reference signals. The absolute minimum you need depends on directionality (simplex vs. full duplex) and whether you rely on hardware handshaking lines. This question asks for the minimum number of wires to send data in one direction over a simple asynchronous serial connection like RS-232, with no hardware flow control.
Given Data / Assumptions:
Concept / Approach:
In asynchronous RS-232-style links, the transmitter places a voltage on the TxD conductor relative to a common signal ground. Because the receiver needs a reference, at least one return/ground conductor must be present. Therefore, for one-way data transmission, two conductors suffice: TxD and signal ground. Full-duplex requires a third for RxD, and hardware flow control adds more wires, but these are not strictly required to send data one-way.
Step-by-Step Solution:
Verification / Alternative check:
Practical lab tests with USB-to-TTL or RS-232 adapters confirm that a two-wire hookup (Tx and GND) can send characters; adding Rx enables full duplex; adding RTS/CTS introduces hardware flow control but is optional for the minimal link.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming full duplex or hardware flow control is mandatory; forgetting that asynchronous serial embeds timing with start/stop bits, avoiding a dedicated clock wire.
Final Answer:
2 conductors (TxD and signal ground).
Discussion & Comments