Need Help With Binary

Status
Not open for further replies.
00000000 = 0
00000001 = 1
00000010 = 2
00000011 = 3
00000100 = 4
00000101 = 5
00000110 = 6
00000111 = 7
00001000 = 8

etc...
see the pattern?

one easy way to do it is this:
look at your number, for example 00011011

find the number of decimal places for each of the one's.

the first decimal place = 1
the second decimal place = 2
the third decimal place = 4
fourth = 8
fifth = 16
sixth = 32
seventh = 64
eigth = 128

the number 00011011 has ones at the first, second, fourth and fifth decimal place
which means the number is 1 + 2 + 8 + 16
= 27
 
Keep to 8bit as this is about computers.

G = 01000111
O = 01010111
R = 01100001
D = 01000100
O = 01010111
N = 01010011

H = 01001000
I = 01001001
J = 01001011
K = 01001111
L = 01010000
M = 01010001
N = 01010011
O = 01010111
P = 01011111
Q = 01100000
R = 01100001
S = 01100001

14= 00001110

14 - 8 = 6
6 - 4 = 2
 
Status
Not open for further replies.
Back
Top Bottom