Difficulty: Easy
Correct Answer: UART
Explanation:
Introduction:
Systems often need to communicate over serial links (e.g., RS-232, RS-485, UART-over-USB) while the CPU presents data on a parallel bus. A dedicated interface device performs the format conversion and handles timing details.
Given Data / Assumptions:
Concept / Approach:
A UART (Universal Asynchronous Receiver/Transmitter) converts between parallel and serial data. On transmit, it frames bytes with start/stop (and parity) and shifts them out at the selected baud rate. On receive, it samples the serial line, reconstructs the byte, checks parity/stop, and presents parallel data to the system.
Step-by-Step Solution:
Verification / Alternative check:
MCU block diagrams and PC serial ports universally feature UARTs for parallel–serial translation, confirming their role as the standard interface component.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
UART
Discussion & Comments