Binary Flashcards
What is binary?
Counting in 0’s and 1’s
How do you double in binary?
Left Hand shift e.g. if you shift 3 spaces to the left it would multiply by 2 to the power of 3
How do you half in binary?
Right hand shift e.g. shift 3 spaces to right you divide by to the power of 3
What is the highest number we can store?
2 to the power of n minus 1
How can you combine different combinations of bits?
2 to the power of n
Rules of binary
0+0=0
0+1=1
1+1=0 with 1 to carry
1+1+1=1 with 1 to carry
How many bits in a nibble
4
How many bits in a byte
8
How many bytes in kilobyte
1000
Give order of the bytes
bit, nibble, byte, kilobyte, megabyte, gigabyte, terabyte
What base is hexadecimals?
16
Why is Hex important and used?
Easier to learn/ remember
Quicker to write,type and decode