Why do computers use binary to represent all forms of data?
Explain the concept of overflow and why it occurs in binary addition
Explain the difference between the binary and denary number systems
What are the binary place values for a byte?
128 64 32 16 8 4 2 1
Convert the binary number 10011011 into denary
155
Convert the denary value 156 into binary
10011100
What is the largest value that can be stored in 8 bits?
255
What is the largest value that can be stored in 10 bits?
1023
What would be the effect of shifting the bits 1 place to the left for the binary value 0001 1101
What would be the effect of shifting bits 3 places to the left?
What would be the effect of shifting bits 2 places to the right?
How many bits in a byte?
8
How many bits in a nibble?
4
How many nibbles in 4 bytes?
8
What is a register?
What are the rules you need to remmeber for binary addition?
Add the 2 binary values 00100111 + 01001010
01110001
Add the 2 binary values 01110010 + 11111001. If you tried to store the result in word size of 8 bits what error would occur?
Requires 9 bits (101101011) so overflow error
What are the binary place values for a 2’s Complement byte?
-128 64 32 16 8 4 2 1
What is the smallest value that can be stored in a 2’s Complement byte?
What is the largest value that can be stored in a 2’s Complement byte?
Negative denary numbers can be represented as binary using ….
2’s Complement
Convert the 2’s Complement binary number below to denary
11111111
-1
Convert the 2’s Complement binary number below to denary
10001000
-120