Problem of overflows
n A problem with limited precision arithmetic is that
overflows frequently occur. This can give rise to
meaningless results: consider
n 200+175 = 375 but in 8 bit binary
11001000
+10101111
=101110111
This leaves an answer of 119
decimal – clearly wrong