CSS Computer Science (Optional) — Paper-I, Section-A, Topic I, p.10. Covers: Computer System Components and Communication System.

The Four Functional Components

A computer system is organized around four functional components that must communicate with one another to process data:

  1. Input Unit — accepts raw data and instructions from the outside world (via devices such as keyboard, mouse, or scanner) and converts them into the binary form the CPU can process. It is the sole gateway through which a user's commands and external data enter the system — without it the CPU would have nothing to compute on. (Full device breakdown: see the Input Devices page.)
  2. Central Processing Unit (CPU) — often called the "brain" of the computer; it fetches each instruction from memory, decodes it, and executes it using its two sub-units — the Control Unit, which coordinates the whole process, and the Arithmetic Logic Unit, which performs the actual calculation. Its speed and architecture (clock speed, number of cores) largely determine overall system performance. (Full CU/ALU/register breakdown: see Components of a Computer System.)
  3. Memory Unit — provides temporary, high-speed storage (RAM) for the data and instructions currently in use, so the CPU is not forced to fetch every item from slow secondary storage. It works alongside ROM (permanent boot instructions) and cache (a small, ultra-fast buffer) to keep the CPU continuously supplied with data. (Detail: see Components of a Computer System.)
  4. Output Unit — takes the processed results held in memory and converts them into a form usable by a person or another machine — a visual display, a printed page, sound, or a signal sent onward to another device. Common examples are the monitor, printer, and speaker. (Full device breakdown: see the Output Devices page.)

These four form the basic input → process → store → output cycle that defines how any computer operates, regardless of size or generation.

The Communication System (Buses)

The four components are linked by a communication system made of buses — sets of parallel wires that carry signals between the CPU, memory, and I/O devices:

Why this matters: without a communication system, the CPU, memory, and I/O devices would be isolated components with no way to exchange data — the bus system is what turns separate hardware parts into a functioning, coordinated computer system.


MCQ Traps

Self-Test Questions

  1. Name the four functional components of a computer system in their operational order.