Question:medium

Which component of a computer is responsible for processing data?

Show Hint

Use this analogy: The CPU is the chef (processing), the keyboard is the recipe book (input), and the finished meal on a plate is the monitor (output). The processing is the crucial middle step where the work happens.
Updated On: Jul 14, 2026
  • Monitor
  • CPU
  • Keyboard
  • Printer
Show Solution

The Correct Option is B

Approach Solution - 1

Step 1: Understanding the Question:
The question identifies the core hardware component of a computer system that performs instructions, calculations, and data management tasks.
Step 2: Detailed Explanation:

The Central Processing Unit (CPU): Often referred to as the "brain" of the computer, the CPU is responsible for executing all instructions provided by software and hardware. Every action you take on a computer, from clicking a mouse to running a complex simulation, passes through the CPU.

Internal Architecture: The CPU consists of three main sub-units: The Control Unit (CU), which directs the flow of data; the Arithmetic Logic Unit (ALU), which performs mathematical and logical operations; and Registers, which are high-speed storage locations for temporary data.

Processing Cycle: The CPU operates on a "Fetch-Decode-Execute" cycle. It fetches instructions from the RAM, decodes what the instruction means, and then executes it using the ALU.

Analyzing Incorrect Options: A monitor is an "output" device used to display visual data. A keyboard is an "input" device used to enter data. A printer is an "output" device used to produce physical copies of documents. None of these components actually perform the internal processing of data; they only facilitate interaction with the user.

Performance Factors: The processing power of a computer is largely determined by the CPU's clock speed (measured in GHz) and the number of "cores" (independent processing units) it contains.

Step 3: Final Answer:
The CPU is the correct answer as it is the primary engine that processes all data and instructions within a computer system.
Was this answer helpful?
1
Show Solution

Approach Solution -2

Instead of listing what a CPU is made of, it helps to follow one ordinary action through the machine and see which part actually does something to the data along the way.

Say a user presses a key on the keyboard, expecting to see that character appear on the screen. The keyboard itself does not know what a letter looks like on screen. It simply generates a scan code, a small electrical signal that identifies which key was pressed, and sends that signal into the system.

That raw signal then reaches the CPU. This is where the real work happens: the CPU interprets the scan code, matches it to the correct character, decides how and where it should be displayed, and sends the finished instruction onward. Nothing about the signal is understood or transformed until it passes through the CPU.

Finally, the monitor receives the already-processed instruction and simply lights up the corresponding pixels to display the character. The monitor is doing display work, not interpretation.

Tracing this single action, keyboard to CPU to monitor, shows that only one link in that chain actually transforms the raw signal into meaningful output, and that link is the CPU.

Therefore, the correct answer is CPU.

Was this answer helpful?
0