BINARY
A numbering system involving the use of '1' and '0' eg. 11001001
Binary means the use of only two values,0 and 1,in encoding data.All digital computers primarly use some form of binary encoding,such as 8 ,16,32 binary digits at a time.Characters that you see on screen or type with your keyboard are normally encoded with 8 binary digits.For example the binary value for the letter A is 01000001.
Binary is a two-digit (Base-2) numerical system, which computers use to store data and compute functions. The reason computers use the binary system is because digital switches inside the computer can only be set to either on or off, which can be easily represented by a 1 or 0. Though the binary system consists of only 0's and 1's, the two digits can be used to represent any number. For example, 0 in binary represents 0, 1 represents 1 (2^0), 10 represents 2 (2^1), 11 represents 3 (2^1 + 2^0), 100 represents 4 (2^2), 101 represents 5 (2^2 + 2^0), 110 represents 6 (2^2 + 2^1), 111 represents 7 (2^2 + 2^1 + 2^0), 1000 represents 8 (2^3), etc.