Binary, Bits, & Bytes

Why Binary?

Physically, it’s easier to either store some electricity or not store some electricity in some switches or transistors, so binary bits are a natural solution

Example: Representing 123 in Binary & Decimal

In decimal form, representing 123 can be done by splitting it into the hundreds, tens, and one’s place; like this:

100101
123

In binary, representing 123 can be done by splitting it into 2^n bits; like this:

2^62^52^42^32^22^12^0
1111011