Module 01: Computer Architecture & How C Works Under The Hood

Duration: 3.5 Hours โ€ข Beginner to Systems
1. Ground Zero Fundamentals 1 / 4

What is a Computer & How Does It Think?

Understanding Bits, Bytes, and Binary from Absolute Ground Zero

At the physical hardware level, a computer contains billions of tiny microscopic semiconductor switches called transistors. Each transistor has two physical electrical states: Conducting electricity (High Voltage ~1.2Vโ€“3.3V) or Insulating electricity (Ground Voltage ~0V).

๐Ÿ’ก
The Binary Language
We represent these two physical voltage states mathematically as 1 (ON) and 0 (OFF). This single binary digit is called a Bit (Binary Digit).
Unit Definition Capacity / Value Range
1 Bit (b) Smallest unit of digital information (0 or 1) 2 distinct states (0 or 1)
1 Nibble Group of 4 bits (e.g. 1010) 16 distinct states (Represented by 1 Hexadecimal digit 0x0 to 0xF)
1 Byte (B) Standard atomic memory unit = 8 bits (e.g. 11001010) 256 distinct states (0 to 255)
1 Word Natural CPU data transfer size (32 bits = 4 Bytes, or 64 bits = 8 Bytes) 4,294,967,296 states (32-bit) / 18.4 Quintillion states (64-bit)