convert 56 into binary numbers
00111000
convert 00111 into denary
7
Add the following 11100011 + 10001111 =
101110010
Explain overflow
When a value needs to go in more than 8 bit columns and won’t be stored.
What are the errors that might occur in overflow?
The value that overflows is lost and not stored
Convert this hexidecimal into denary:
EE
(16 x 14) + (1 x 14) = 238
Convert this denary into hexidecimal:
35
128 64 32 16 8 4 2 1 0 0 1 0 0 0 1 1 8 4 2 1 8 4 2 1 0 0 1 0 0 0 1 1 2=2 3=3 hexidecimal = 23
Convert this binary into hexadecimal, 0 0 1 1 1 1 0 1
128 64 32 16 8 4 2 1 0 0 1 1 1 1 0 1 8 4 2 1 8 4 2 1 0 0 1 1 1 1 0 1 3=3 13=D hexidecimal= 3D
Convert this hexidecimal into binary:
6A
8 4 2 1 8 4 2 1
0 1 1 0 1 0 1 0
binary = 01101010
Shift this binary to the right to double
0010
8 4 2 1
0 0 1 0 = 2
0 1 0 0 = 4