Difficulty: Easy
Correct Answer: handshaking
Explanation:
Introduction / Context:
Before data can be exchanged reliably between two digital devices, both sides must agree on readiness and timing. The mechanism by which devices coordinate this readiness is a foundational concept in interface design and bus protocols.
Given Data / Assumptions:
Concept / Approach:
Handshaking is the mutual signaling by which sender and receiver agree when to start, continue, or end a transfer. It can be synchronous (tied to a clock) or asynchronous (event-driven), and may be two-wire (request/acknowledge) or protocol-embedded (for example, in UART start/stop bits).
Step-by-Step Solution:
Verification / Alternative check:
Bus specifications (for example, Centronics, IEEE-488, certain memory bus ready signals) explicitly define handshake sequences to ensure reliable transfer.
Why Other Options Are Wrong:
DMA is a transfer method; multiplexing shares a medium among signals; bidirectional addressing is not a standard term for link setup.
Common Pitfalls:
Assuming handshaking requires a separate clock; even asynchronous links use handshake signals to ensure data validity windows.
Final Answer:
handshaking
Discussion & Comments