youd be surprised how many people dont know this-
How to read and write binary
Lets start with base 2. (1, 2, 4, 8, 16, 32, 64)(Notice doubles)
To make, say, number 76, the binary is:
64 32 16 8 4 2 1 0
1 0 0 1 1 0 0 0
You MUST make sure that there is either a 1 or a 0 in one column, so, knowing that...
(1*64)+(1*
+(1*4)=76 So /\ means 1 64, 1 8, and 1 4. all the rest have 0s becuase the amount of that number in the equation is 0.
Correct me if I'm wrong.