Files
2026-07-26 01:11:44 +02:00

8 lines
1.0 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
A CPU (Central Processing Unit) is the main component of a computer that performs the instructions given by programs. It is often called the computers processor or main processor. The CPUs electronic circuits handle tasks such as:
Arithmetic operations — calculations like addition, subtraction, and other mathematical tasks.
Logic operations — making decisions based on comparisons (for example, checking whether one value is greater than another).
Control operations — managing and coordinating the activities of other computer components.
Input/output (I/O) operations — handling communication between the computer and external devices.
The CPU works together with other parts of a computer, such as main memory (RAM) and input/output hardware. It is different from specialized processors like graphics processing units (GPUs), which are designed mainly for tasks such as rendering images and accelerating parallel computations. In short, the CPU is the general-purpose “brain” of a computer that runs programs and coordinates system operations.