Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
DAQ systems interface sensors and actuators to processors. Communication structures vary (parallel buses, SPI/I2C, PCIe). Conceptually, interactions can be viewed as data transfer plus control/handshaking, which many curricula summarize as “data bus” and “control bus.” Addressing may be explicit (address bus) or encoded within control transactions, especially in serial protocols.
Given Data / Assumptions:
Concept / Approach:
The classical parallel microprocessor model uses three groups: address, data, and control. Many practical DAQ links collapse address into commands or registers accessed over the control path. Thus, describing communication in terms of a data bus (payload) and a control bus (commands, strobes, status) is acceptable in a generic sense, even though specific implementations may expose a separate address bus.
Step-by-Step Solution:
Verification / Alternative check:
Datasheets for ADC/DAC/DAQ cards show separate data width and control signaling; serial devices define command opcodes (control) distinct from payload bits (data).
Why Other Options Are Wrong:
Common Pitfalls:
Assuming a strict three-bus taxonomy in all systems; ignoring protocol-layer multiplexing of address within control frames.
Final Answer:
Correct
Discussion & Comments