Penguin
Annotated edit history of BinaryCode version 4, including all changes. View license author blame.
Rev Author # Line
1 JaredWigmore 1 A code which consists entirely of 2 numbers or states, represented as 0 and 1.
2 Can be used as a base-2 counting system.
2 GianPerrone 3
4 Binary has place values that work on powers of 2 instead of powers of 10 as in our normal decimal system.
5
6 So a binary number like 1101 is (1*1)+(0*2)+(1*4)+(1*8) = 13.
4 GianPerrone 7
8 ----
9
10 If you care to learn things like Binary Addition, see http://www.learnbinary.com/

PHP Warning

lib/blame.php:177: Warning: Invalid argument supplied for foreach()