Binary
Binary
Information – the raw data is used and put into some context
Binary - It is a 'base-2' number system - This type of number will only have two
digits, a 1 or 0 and is used to represent the two states (ON, OFF) of a computer
whilst processing data. The digital data that is known as bits and bytes can also
be represented as a binary number.
128 64 32 16 8 4 2 1
0 1 0 0 1 0 1 1
Bit - (This is a single binary digit), each bit is represented as a 1 or 0 and is the
smallest unit of data that can be stored.
Byte - A byte contains 8 bits, e.g. 10000101. A single character on the keyboard
is equivalent to one byte.
1011010 1 0 1 1 0 1 0 1 128+32+16+4+1=18
1 1
0010111 0 0 1 0 1 1 1 1 32+8+4+2+1=47
1
1100101 1 1 0 0 1 0 1 1 128+64+8+2+1=263
1
0001001 0 0 0 1 0 0 1 1 16+2+1=19
1
Representing Text
To make the passing of data from one computer to another easy, a standard
form of representing characters was adopted by computer manufacturers. The
American Code for Information Interchange (ASCII).