Take
a Swing!
Problem 3What
are some of the functions performed by a memory manager in a computer?
ANSWER

Problem 4If
you have the binary representation of a number, you can find its two's
complement by scanning the number from right to left, copying zeros
up to the first one, copying that, and then complementing the bits
after that.
For example:
decimal 20 = 0 0 0 1 0 1 0 0
decimal -20 = 1 1 1 0 1 1 0 0
Prove that this works
in all cases.
ANSWER 
2-01
|