Instiq
Chapter 3 · Technology·v1.0.0·Updated 7/16/2026·~12 min

What's changed: Initial version

3.3Computer Components

Key points

Learn about the processor (CPU)—the "brain" of a computer—and its clock speed, the cores that let it process work in parallel, main memory (RAM) as the working desk and read-only ROM, the cache that bridges the speed gap between the CPU and main memory, and input/output interfaces (USB, HDMI, Bluetooth) that connect external devices.

Open up a computer and you find several core parts working together: the processor that performs calculations, main memory that serves as a workspace, and input/output interfaces that communicate with the outside world. Understanding each part's role, along with the metrics that shape performance (clock speed, core count, cache), is the first step to understanding how a computer works.

3.3.1The processor (CPU), clock speed, and cores

  • CPU (Central Processing Unit) is the device that executes program instructions—the "brain" of a computer, responsible for computation and control. The term processor is used almost synonymously.
  • Clock speed (clock frequency) indicates how many times per second the CPU ticks through a processing cycle (measured in GHz, etc.). A higher value generally means more processing done per second, though performance is not determined by clock speed alone.
  • A core is the part inside a CPU that actually performs processing. A CPU with multiple cores (multi-core) can run multiple tasks in parallel at the same time, increasing overall processing capacity.

3.3.2Main memory, ROM, cache, and I/O interfaces

  • Main memory is the workspace the CPU reads and writes directly; it is physically RAM (Random Access Memory). Its data disappears when power is cut off (volatile). It is the "working desk" that temporarily holds a running program's instructions and data.
  • ROM (Read Only Memory) is largely read-only memory whose data survives even when power is cut off (non-volatile), typically pre-loaded with a device's startup program. It is frequently contrasted with main memory (RAM) in exam questions.
  • A cache (cache memory) is a small, very fast memory placed close to the CPU to bridge the speed gap between the CPU and main memory. It temporarily holds frequently used data, reducing the number of slower accesses to main memory and speeding up processing.
  • An I/O interface is a standard for connecting a computer to peripheral devices. USB is a general-purpose standard for connecting keyboards, mice, external storage, and more. HDMI transmits video and audio together to a display. Bluetooth is a cable-free, short-range wireless connection standard (used for earphones and similar devices).
Exam point

The staples: the CPU is the "brain" handling computation and control; higher clock speed generally means more processing power; more cores allow more parallel processing; RAM is volatile main memory, ROM is non-volatile and largely read-only; cache bridges the speed gap between the CPU and main memory; USB is general-purpose, HDMI carries video/audio, Bluetooth is short-range wireless. The RAM-vs-ROM contrast (whether data survives power-off) is an especially favorite topic.

Trace a laptop's lifecycle from power-on to the end of a work session to see each part's role. Powering on first reads the startup program from ROM, whose data survives even when power is off, which then prepares to load the OS into main memory (RAM). Once the OS boots, the data for opened apps and files gets loaded into RAM one after another, and the CPU reads and writes that data in RAM as it performs computation. During a heavy task like video editing, a higher clock speed means more work done per second, and having multiple cores lets separate jobs—say, video encoding and audio processing—run in parallel, noticeably changing how fast things feel. Data the CPU accesses frequently is temporarily kept in the even-faster cache memory, reducing the wait caused by the speed gap between the CPU and main memory. Along the way, you might plug in a USB drive to move files, connect an external keyboard via USB, project a presentation onto a large display via an HDMI cable, or pair wireless earphones over Bluetooth—all interacting with peripherals through I/O interfaces. When you finish and power off, all the temporary data in RAM disappears, but data you had already saved as a file remains available next time you start up, because it lives on a separate storage device rather than in RAM.

Memory typeWhen power is offMain role
RAM (main memory)Data is lost (volatile)Workspace for a running program
ROMData is retained (non-volatile)Stores startup programs, etc.
CacheData is lost (volatile)Bridges the CPU/main-memory speed gap
Warning

Trap: "ROM loses its data when power is cut off, just like main memory" is wrong—main memory (RAM) is volatile and loses its data, but ROM is non-volatile and retains it. Also, "clock speed alone lets you fully compare CPU performance" is wrong—clock speed is one important metric, but factors such as the number of cores and cache size also affect performance, so clock speed alone cannot give a simple comparison.

Components: processor, memory, I/O interfaces.
Five units and the memory hierarchy

3.3.3Section summary

  • CPU handles computation and control. Higher clock speed and more cores generally mean more processing power
  • RAM = volatile main memory (workspace); ROM = non-volatile, largely read-only. Cache bridges the speed gap
  • I/O interfaces: USB = general-purpose; HDMI = video/audio; Bluetooth = short-range wireless

Sign in to track progress — Log in.

Quick check

(just a quick review)

Q1. Which memory loses the data stored in it when a PC's power is completely turned off?

Q2. You want video encoding and audio processing to proceed efficiently at the same time in video-editing software. Which CPU characteristic is most relevant to this goal?

Q3. You want to transmit both video and audio from a laptop to a large display using a single cable. Which I/O interface is suited to this purpose?

Check your understandingPractice questions for Chapter 3: Technology