Courseiva
FC0-U71Chapter 2 of 18Objective 1.2

Computer Hardware Components and Peripherals

Ever opened a computer and felt overwhelmed by all the circuit boards, wires, and chips? This chapter breaks down exactly what each internal component does, why it matters, and how it all works together to make a computer run. For the FC0-U71 exam, you need to be able to identify these parts and explain their purpose – this is the foundation that every other hardware topic builds on.

12 min read
Beginner
Updated Jul 23, 2026
Reviewed by Johnson Ajibi· Senior Network & Security Engineer · MSc IT Security

A simple way to picture Computer Hardware Components and Peripherals

The Kitchen Brigade Analogy

How does a single kitchen produce a full three-course meal for fifty people on a Friday night without total chaos?

Think of the computer as a busy professional kitchen. The central processing unit (CPU) is the head chef. The head chef reads the recipes (software instructions), decides what to cook next, and shouts orders. But the head chef cannot chop vegetables or stir sauces while also boiling pasta – that would be a disaster. That is why the kitchen has random access memory (RAM) – the stainless-steel prep counter. The head chef places all the ingredients needed for the next five minutes on that counter. If the counter is huge, the chef cooks fast without stopping. If the counter is tiny, the chef must run back to the walk-in fridge every two seconds. The hard drive (storage) is that giant walk-in fridge. It holds every ingredient (your files, your operating system, your game saves) for the long term, but it is slow to open and search through. Inside the computer case, the motherboard is the actual kitchen layout – the gas lines, the electrical wiring, the placement of sinks and ovens. It connects every part so that the head chef’s orders actually reach the ovens and the prep counter. Without the motherboard, you just have a pile of expensive, unconnected parts.

Now, the chef needs to see what is happening, so the graphics processing unit (GPU) is the pastry chef and the plating specialist. It handles the visual heavy lifting – creating the beautiful plate presentation (rendering graphics) while the head chef focuses on the main dish logic. Finally, the power supply is the gas and electricity mains. Without it, nothing turns on. This analogy works because, in both cases, every component has a dedicated job, and the system only works fast when every part is matched to the task at hand.

How It Actually Works

A computer is not one single magical box. It is a collection of specialised components that each handle a different job. When you press the power button, every part wakes up and starts communicating through a central nervous system called the motherboard.

Let's start with the brain: the Central Processing Unit (CPU). The CPU executes instructions – it does arithmetic (adding numbers), logic (comparing values), and controls input/output operations. Every piece of software you run, from a calculator app to a video game, is eventually broken down into millions of tiny instructions that the CPU processes one after the other. CPU speed is measured in gigahertz (GHz) – billions of cycles per second. A higher GHz generally means a faster CPU, but the number of cores also matters. A dual-core CPU has two processors on one chip, so it can handle two tasks simultaneously. A quad-core has four. For the exam, remember that the CPU is the primary processing unit, but it cannot work alone.

Next is Random Access Memory (RAM). RAM is the computer's short-term memory. It holds the data and instructions that the CPU needs right now or in the next few seconds. When you open a web browser, the browser's program code is loaded from the hard drive into RAM because RAM is much faster to read and write from. RAM is volatile – when you turn off the power, everything in RAM disappears. That is why you lose unsaved work in a document if the power cuts out. RAM capacity is measured in gigabytes (GB). More RAM means you can run more applications at once without slowdown. For general office work, 8 GB is common; for gaming or video editing, 16 GB or more is typical.

The storage drive (often called a hard drive or SSD) is the permanent memory. It keeps your operating system (Windows, macOS, Linux), your applications, your photos, and your documents even when the computer is off. Storage is non-volatile. There are two main types: Hard Disk Drives (HDDs) use spinning magnetic platters and a moving read/write head, like an old vinyl record player. They are slower but cheaper per gigabyte. Solid State Drives (SSDs) use flash memory chips with no moving parts. They are much faster, quieter, and more durable, but more expensive per gigabyte. Modern computers almost always use an SSD for the operating system because it boots up in seconds rather than minutes.

The motherboard is the main circuit board that connects everything together. It has slots for the CPU, sockets for RAM (DIMM slots), connectors for storage drives (SATA or M.2 ports), and expansion slots for add-on cards like a graphics card. The motherboard also contains the chipset, which controls data flow between the CPU, RAM, storage, and peripherals. Think of the chipset as the traffic controller at a busy intersection – it decides which data gets to go where and when.

The Graphics Processing Unit (GPU) handles rendering images, videos, and 3D graphics. It can be integrated (built into the CPU) or discrete (a separate card plugged into the motherboard). Integrated GPUs share system RAM and are fine for web browsing and office work. Discrete GPUs have their own dedicated RAM (called Video RAM or VRAM) and are much more powerful, essential for gaming, video editing, or 3D modelling.

The Power Supply Unit (PSU) converts the alternating current (AC) from your wall outlet into the direct current (DC) that the computer's components need. It supplies different voltages (3.3V, 5V, 12V) to different parts. The wattage rating of a PSU tells you how much power it can deliver. If you build a computer with a high-end GPU and CPU, you need a PSU with enough wattage to handle the peak power draw.

Finally, there are expansion cards – additional circuit boards you can plug into the motherboard to add functionality. Common examples include a dedicated network card (NIC) for wired internet, a Wi-Fi card for wireless, or a sound card for higher-quality audio. Most modern motherboards have these built in, but expansion slots (like PCIe) give you flexibility.

For the FC0-U71 exam, you must be able to identify each of these components, know whether they are inputs or outputs (storage is neither – it is a storage device), and understand their primary function. The exam loves to test the difference between volatile and non-volatile memory, and the role of the CPU versus the GPU.

This diagram shows how the power supply feeds the motherboard, which connects the CPU, RAM, GPU, and storage drive, while the CPU coordinates data flow between memory, graphics, and storage.

Walk-Through

1

Power On and POST

When you press the power button, the Power Supply Unit (PSU) sends electricity to the motherboard. The motherboard's Basic Input/Output System (BIOS) or UEFI firmware runs a Power-On Self-Test (POST) to check that essential components like the CPU, RAM, and storage are present and functioning. If POST fails, the computer may beep or show no display.

2

CPU Initialises and Loads Bootloader

Once POST passes, the CPU takes over. It reads the first instructions from the storage drive (the bootloader), which is a small program that knows how to start the operating system. The CPU transfers these instructions into RAM for faster access.

3

Operating System Loads into RAM

The bootloader loads the core of the operating system (like the Windows kernel) from the storage drive into RAM. From this point on, all active system processes run from RAM because it is much faster than reading directly from the hard drive every time.

4

User Opens an Application

When you double-click a program (e.g., a web browser), the CPU sends a request to storage to copy the program's executable file and required libraries into RAM. The CPU then begins processing the program's instructions. If there is not enough RAM available, the system uses a portion of the storage drive as 'virtual memory', which causes slowdown.

5

Data is Processed and Sent to Output

The CPU processes data using its arithmetic and logic units. If the application needs to display graphics, the CPU sends drawing commands to the GPU (integrated or discrete), which renders the images and sends them to the monitor. If you save a file, the CPU directs the contents from RAM back to the storage drive for permanent retention.

What This Looks Like on the Job

Imagine you work as a junior IT support technician for a medium-sized accounting firm. A senior accountant calls you, frustrated. 'My computer is so slow I can't get through a single spreadsheet without it freezing. It takes five minutes to open Outlook in the morning.' You walk over to her desk, and you need to diagnose the hardware problem.

Step one: you check the Task Manager (Windows) or Activity Monitor (macOS). You immediately see that the RAM usage is at 95%. The accountant has 4 GB of RAM, but she has 20 browser tabs open, Excel, Outlook, and a PDF reader all running at once. The system has run out of physical RAM, so Windows has started using the hard drive as 'virtual memory' – a process called paging. Paging is extremely slow because the hard drive is orders of magnitude slower than RAM. That explains the freezing.

Your solution: recommend a RAM upgrade from 4 GB to 16 GB. You explain to her manager that this is a cheap fix (around £30-£50 for the parts) and will solve the problem without buying a new computer. You order the compatible RAM module (checking the motherboard's specifications for DDR3 or DDR4 type and speed), power down the machine, open the case, and insert the new RAM stick into an empty DIMM slot. When you boot the computer up, Task Manager now shows 16 GB of RAM, and the accountant can run all her programs without paging. She is back to full speed.

Second scenario: you are setting up a new computer for a graphic designer who needs to edit 4K video. You are specifying the hardware. For this role, you know the GPU is critical. You choose a discrete graphics card with at least 8 GB of VRAM (like an NVIDIA GeForce RTX or AMD Radeon series). You also choose a fast SSD (NVMe M.2 type) for the operating system and current projects, because loading large video files from a spinning hard drive would be agonisingly slow. You pair it with 32 GB of RAM because video editing software like Adobe Premiere Pro uses RAM for previews and effects. The CPU should be a modern multi-core processor (at least 6 cores) because video encoding uses all cores.

Third scenario: a server in the office keeps randomly restarting. You suspect the Power Supply Unit. You use a multimeter to test the voltage outputs, or you swap in a known-good PSU. If the crashes stop, you have found the culprit. A failing PSU can cause data corruption and instability, so it is a priority fix.

In all these cases, knowing the purpose of each component lets you diagnose faster, recommend cost-effective upgrades, and avoid ordering incompatible parts. The exam is not asking you to build a PC from scratch, but you must understand these relationships to answer scenario-based questions.

How FC0-U71 Actually Tests This

The FC0-U71 exam tests objective 1.2 with a mix of definition recall and scenario-based questions. Expect around 5-8 questions on this sub-objective. They love to test the following:

Volatile vs Non-volatile memory: RAM is volatile (loses data on power loss). Storage (HDD/SSD) is non-volatile (retains data). Traps: they might ask 'Which component must have power to maintain data?' The answer is RAM.

CPU vs GPU: The CPU is the general-purpose processor for all tasks. The GPU specialises in parallel graphics rendering. Trap: they might describe a video editing task and ask 'Which component is most important for this workload?' The answer is GPU.

Purpose of the motherboard: It provides connectivity between all components. Trap: they might say 'The motherboard stores the operating system' – that is false. Storage drives store the OS.

RAM vs Storage: RAM is temporary workspace; storage is permanent. Trap: they might describe 'loading a program into memory' and ask what happens when you turn off the computer. The program disappears from RAM but remains on the storage drive.

Form factors: They may ask which component fits into a DIMM slot (answer: RAM), or which component uses an LGA or PGA socket (answer: CPU).

Power supply ratings: You might need to know that a higher wattage PSU supports more powerful components. They will not ask you to calculate wattage, but they may test the concept.

Integrated vs discrete GPU: Integrated GPUs share system RAM; discrete GPUs have their own VRAM. A discrete GPU is better for gaming or video editing.

Storage interfaces: SATA is common for HDDs and older SSDs. M.2 is a newer, faster interface for SSDs. NVMe is a protocol that makes M.2 SSDs even faster. The exam may ask which is faster.

Common question patterns:

'Which of the following is a volatile memory type?' (Answer: RAM)

'A user reports their computer is very slow when running multiple applications. Which component should you upgrade first?' (Answer: RAM)

'Which component is responsible for executing instructions from software?' (Answer: CPU)

'What is the primary function of the power supply unit?' (Answer: Convert AC to DC power)

'Which storage technology has no moving parts?' (Answer: SSD)

Memorise these definitions cold: volatile, non-volatile, gigahertz, core, DIMM, PCIe, SATA, M.2, form factor. Do not confuse the motherboard with the CPU – that is a classic rookie mistake. Also, remember that the chipset is part of the motherboard, not a separate component you can buy.

Finally, the exam will sometimes ask you to identify a component from an image or a description. Practise looking at pictures of motherboards, CPUs, RAM sticks, and storage drives so you can recognise them by shape and slot type.

Key Takeaways

The CPU (Central Processing Unit) is the brain that executes all software instructions, measured in gigahertz and core count.

RAM (Random Access Memory) is volatile temporary storage that loses all data when power is turned off; more RAM allows more programs to run simultaneously.

Storage drives (HDD or SSD) are non-volatile and permanently hold the operating system, applications, and user files even when the computer is off.

The motherboard is the main circuit board that connects the CPU, RAM, storage, and expansion cards, allowing them to communicate.

A discrete GPU (Graphics Processing Unit) has its own dedicated video memory (VRAM) and is essential for gaming and graphics-intensive tasks, unlike integrated GPUs that share system RAM.

The Power Supply Unit (PSU) converts AC power from the wall outlet into DC power used by internal components, and its wattage rating must be sufficient for all installed hardware.

Expansion slots like PCIe allow you to add extra functionality such as dedicated network cards or sound cards to a computer.

Volatile memory requires constant power to retain data, while non-volatile memory retains data without power – this distinction is a common exam question.

Easy to Mix Up

These come up on the exam all the time. Here's how to tell them apart.

RAM (Memory)

Volatile – loses data when power is off

Faster read/write speeds (nanoseconds)

Used as temporary workspace for active programs

Storage Drive (HDD/SSD)

Non-volatile – retains data without power

Slower read/write speeds (milliseconds for HDD, microseconds for SSD)

Used for permanent storage of files and the operating system

CPU (Central Processing Unit)

General-purpose processor for all tasks (arithmetic, logic, control)

Fewer cores (typically 4-16) optimised for sequential tasks

Executes instructions from the operating system and applications

GPU (Graphics Processing Unit)

Specialised processor for parallel graphics rendering and computation

Thousands of smaller cores optimised for simultaneous calculations

Handles image, video, and 3D rendering

Integrated GPU

Built into the CPU chip

Shares system RAM with the CPU

Sufficient for web browsing, office work, and basic video playback

Discrete GPU

Separate expansion card plugged into the motherboard

Has its own dedicated video memory (VRAM)

Required for gaming, 3D modelling, and video editing

Hard Disk Drive (HDD)

Uses spinning magnetic platters and a movable read/write head

Slower access times (seeks and rotations cause latency)

More susceptible to physical damage from drops because of moving parts

Solid State Drive (SSD)

Uses flash memory chips with no moving parts

Much faster read/write speeds (near-instantaneous access)

More durable and quieter, but more expensive per gigabyte

Watch Out for These

Mistake

More GHz always means a faster CPU, so a 4.0 GHz single-core CPU is better than a 3.0 GHz quad-core CPU.

Correct

More cores often matter more than raw clock speed for multitasking and modern software. A quad-core CPU can handle multiple tasks simultaneously, while a single-core CPU must switch between tasks, causing slowdowns. The exam focuses on the role of multiple cores.

Beginners see GHz as the only speed measure because product labels emphasise it, and they do not understand parallel processing.

Mistake

RAM is where you permanently store your documents and photos.

Correct

RAM is temporary workspace; documents are stored on the hard drive or SSD. When you open a document, it is copied into RAM for fast editing, and when you save, it is written back to storage.

In everyday language, people say 'my phone has 128GB memory' when they really mean storage. The terms 'memory' and 'storage' are confused in casual conversation.

Mistake

The graphics card (GPU) handles all visual output, so it is the only component that determines how fast a computer feels in general use.

Correct

For everyday tasks like web browsing and word processing, the integrated GPU in the CPU is sufficient. The CPU and RAM have a much bigger impact on general responsiveness. The discrete GPU mainly matters for gaming, 3D rendering, and video editing.

Gaming marketing overemphasises the GPU, so beginners assume it is the most important part for everything.

Mistake

You can upgrade a laptop's CPU easily, just like you can upgrade RAM.

Correct

Most laptop CPUs are soldered to the motherboard and cannot be upgraded. Desktop CPUs are socketed and replaceable, but often require a motherboard that supports the new CPU. RAM is more commonly user-upgradeable on both laptops and desktops (though some laptops have soldered RAM).

People assume all computer parts are modular like desktop PC components, overlooking the compact manufacturing of laptops.

Mistake

An SSD is always better than an HDD in every situation, so there is no reason to use HDDs anymore.

Correct

HDDs are still used for bulk storage of large files (video archives, backup drives) because they offer much more storage per pound. For a media server or network-attached storage (NAS), HDDs are cost-effective. SSDs are superior for the operating system and active projects.

The speed advantage of SSDs leads beginners to dismiss HDDs entirely, ignoring the cost-per-gigabyte advantage in high-capacity scenarios.

Do You Actually Know This?

Reveal each answer, then mark whether you got it right. Score 60%+ to unlock the next chapter.

Frequently Asked Questions

What is the difference between RAM and a hard drive?

RAM is short-term volatile memory that the CPU uses as a workspace for active programs; it disappears when power is off. A hard drive is long-term non-volatile storage that holds your files and programs even when the computer is shut down.

Can I use any RAM stick in my computer?

No. You need RAM that matches your motherboard's supported type (DDR3, DDR4, or DDR5), speed, and form factor (desktop DIMM vs laptop SODIMM). Mixing incompatible RAM can cause the computer not to boot.

Is a more expensive CPU always faster?

Not always. A more expensive CPU often has more cores or higher clock speed, but the performance gain depends on the software you use. Some programs only use one or two cores, so a high core count may not help. Also, a CPU must be paired with enough RAM and a fast storage drive to avoid bottlenecks.

What happens if my power supply wattage is too low?

If the PSU wattage is too low for the components, the computer may randomly shut down, crash under load, or fail to boot. In extreme cases, a low-quality PSU can damage other components. Always choose a PSU with a wattage rating above the peak power draw of your system.

Do I need a graphics card for a computer that is only used for web browsing and office work?

No. Most modern CPUs have integrated graphics that are sufficient for web browsing, video playback, and office applications. A separate discrete graphics card is only needed for gaming, 3D rendering, video editing, or running multiple high-resolution monitors.

What does the motherboard chipset do?

The chipset is a set of chips on the motherboard that manages data flow between the CPU, RAM, storage, and peripheral devices. It acts as a traffic controller, ensuring that data reaches the correct destination without collisions.

Terms Worth Knowing

Keep going

You've finished Computer Hardware Components and Peripherals. Continue through the FC0-U71 study guide to build a complete picture of the exam.

Done with this chapter?