Binary Number System is a base-2 numeral system that uses only two digits: 0 and 1.
It's the foundation of all modern digital systems, including computers, because binary aligns perfectly with the on/off states of electronic switches
Base: 2
It uses only two symbols: 0 and 1
Positional Value:
Each digit's position represents a power of 2
1101 → (1 * 2^3) + (0 * 2^2) + (1 * 2^1) + (1 * 2^0) = 8 + 0 + 2 + 1 = 11
10011 → (1 * 2^4) + (0 * 2^3) + (0 * 2^2) + (1 * 2^1) + (1 * 2^0) = 16 + 0 + 0 + 2 + 1 = 19
Repeated Division Method:
ex) 15602 into binary