Difficulty: Easy
Correct Answer: Central Processing Unit
Explanation:
Introduction / Context:
A modern digital computer is organized into functional subsystems. Two of the most central are the control section, which fetches and sequences instructions, and the arithmetic-logic section, which performs calculations and logical decisions. Understanding the umbrella term that encapsulates both is foundational for computer organization and systems design.
Given Data / Assumptions:
Concept / Approach:
In standard nomenclature, the Central Processing Unit (CPU) is the component that combines the control unit (CU) and the arithmetic-logic unit (ALU). The CPU executes program instructions, coordinating with memory and I/O subsystems. While a “control unit” is part of the CPU, it does not include the ALU by itself; a block diagram is only a drawing; and the Input/Output unit handles peripherals, not core instruction execution.
Step-by-Step Solution:
Identify roles: CU controls sequencing; ALU computes.Recognize the standard grouping: CU + ALU = CPU.Exclude distractors: a diagram is not a functional unit; I/O is peripheral handling.Conclude the integrated name is “Central Processing Unit.”
Verification / Alternative check:
Introductory architecture texts explicitly define the CPU as the union of CU and ALU, sometimes also including registers and immediate datapaths as internal CPU resources.
Why Other Options Are Wrong:
Block diagram: a representation, not a device.Control Unit: only one half of the pair.Input / Output Unit: interfaces with peripherals, not core processing.None of the above: incorrect, a standard term exists.
Common Pitfalls:
Confusing “processor” with the entire computer; conflating CPU with GPU or specialized accelerators; assuming I/O control is part of the CPU rather than coordinated by it.
Final Answer:
Central Processing Unit
Discussion & Comments