what is overflow
if you are adding two binary 8 bits together you can end up with an extra digit that doesn’t fit
what are the effects of an overflow error
it may make the program crash or just ignore the extra digit which would produce an unexpected result.
which way does a binary shift move to divide
right
which way does a binary shift move to multiply
left
10
11
12
13
14
15
a
b
c
d
e
f
what problem do binary left shifts
the number may change as the answer can only be represented in 8 bits
what problem do binary right shifts cause
the number may be a decimal which can not be represented