Binary
From bildr
Binary is the name for a base-2 Numeric System. Thus only 0 and 1 are in the counting system. For example:
| Decimal | Binary |
|---|---|
| 0 | 0 |
| 1 | 1 |
| 2 | 10 |
| 3 | 11 |
| 4 | 100 |
| 5 | 101 |
| 6 | 110 |
| 7 | 111 |
| 8 | 1000 |
| 9 | 1001 |
| 10 | 1010 |
| 11 | 1011 |
| 12 | 1100 |
| 13 | 1101 |
| 14 | 1110 |
| 15 | 1111 |
| 16 | 10000 |
In reference to computers, Binary often is meant to refer to Binary Code. Binary Code is, in the simplest terms, the language of digital machines. Because a digital machine or computer can only understand on and off, binary code is composed of simple 1's and 0's. These 1's and 0's are called Bits. Strings of bits (8 bits = 1 Byte) compose a binary code.
In most programming languages, binary numbers are noted with the prefix 0b such as 0b11011 (27)
Binary Code is used to send commands, in the form of a bit, to a Processor or Component by essentially turning off part of all of the component and thus manipulating the current. Most often 1 represents on or high current, and 0 represents off or low current.
Binary Code is almost never written or programmed by hand but is rather composed by a program Compiler. Higher level programming languages written by people must be compiled into binary code that a digital machine can use.
External Links
You can find a few documents on Binary Here
This page is an Article on bildr. Articles are pages that define or explain a concept, method, or generic item.