Layers of a Computer
There are three levels to computing, each building on the previous to achieve the general-purpose operating systems that we have learned through using a computer. By building a system consisting of physical hardware parts and integrated firmware, we create a digital software space for performing tasks through applications.
These systems are built to existing architectures, standards, protocols and specifications. Whether created by a corporation or a committee, these systems allow them to be used interchangeably within compatible hardware and software environments.

Hardware
This is the physical side of computing, created using integrated circuits created from silica and rare earth metals. The name "hardware" is derived from its relatively rigid nature in respect to change.

Hardware includes the motherboard, which acts as a seat for all hardware parts within a computer and enables their communication. The CPU performs precise calculations, the GPU handles graphical manipulation, and the RAM is used to store data in use by software. Long-term data storage is accomplished through high-capacity platter disks or solid-state flash memory drives.
Many motherboards contain an RTC (Real-Time Clock) that keep track of time even when the computer temporarily loses power. Other hardware components may include: network interface cards, sound cards, BlueTooth, and USB for connecting external devices.
Firmware
This low-level software enables the hardware to interact with higher level software, such as your operating system. Hardware components have low-level code embedded into them that enable your computer to configure it. Hardware abstraction provides an operating system with access to low-level functions on a hardware component without needing to know its low-level machine code. For example, requesting an idle hardware component go to sleep to conserve power.

Altering firmware may require replacing a physical module or flashing a reprogrammable memory chip. The name "firmware" reflects the amorphous blend of hardware and software components. Motherboards contain a reprogrammable firmware interface such as BIOS (Basic Input Output System) or UEFI (Unified Extensible Firmware Interface).
These offer access to hardware-level configurations such as which storage device to boot from or which components to disable. RAID allows your computer to enable low-level storage drive duplication or consolidation.
When the hardware is first turn on, the BIOS or UEFI will execute the POST – or Power-On Self Test – to ensure all hardware is functional. After this, the firmware hands control to the software-based bootloader stored on the storage device and loads the operating system.
Software
The operating system offers a general-purpose interface for completing tasks, either using a command-line or graphical user interface. These generally take up larger amounts of space and are stored on internal data drives. When necessary, drivers may be leveraged to expand on the functionality of hardware beyond what is offered by the firmware.

The operating system creates a user environment for running applications to perform specific tasks, such as opening a web browser. Server software enables your operating system to respond to requests from client computers accessing over the network.