Difficulty: Easy
Correct Answer: serial
Explanation:
Introduction / Context:
Legacy PCs expose hardware interfaces with shorthand names. Knowing whether a COM port is serial or parallel helps with cabling, adapters, and configuring peripherals like modems and serial consoles.
Given Data / Assumptions:
Concept / Approach:
“COM” stands for communication port and denotes an asynchronous serial interface. It transmits data bit-by-bit over a single data line in each direction, unlike parallel ports (LPT) that send multiple bits simultaneously.
Step-by-Step Solution:
Verification / Alternative check:
Loopback tests, terminal programs, or OS device names (e.g., COM1 in DOS/Windows, /dev/ttyS0 in Linux) confirm serial operation with configurable baud and parity parameters.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing DB-25 parallel and DB-25 serial pinouts; never cross-use cables. Voltage levels differ from TTL serial (like UART headers), so level shifters are needed for microcontrollers.
Final Answer:
serial
Discussion & Comments