Binary Hex Number System - jude-lindale/Wiki GitHub Wiki
- Base - 10/decimal number system
- 0, 1, 2, 3, 4 etc.
- 231
- 2 = hunders 102
- 3 = tens 101
- 1 = ones 100
- 2 x 100 + 3 x 10 + 1 x 1 = 200 + 30 + 1 = 231 *Base - 2/ Binary *11100111
- 1 = 27 = 128
- 1 = 26 = 64
- 1 = 25 = 32
- 0 = 24 = 16
- 0 = 23 = 8
- 1 = 22 = 4
- 1 = 21 = 2
- 1 = 20 = 1
- 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1
- Add binary (https://youtu.be/RgklPQ8rbkg)