1. Convert the following numbers from decimal to binary, assuming nine-bit twos complement binary representation.
2. Convert the following numbers from binary to decimal, assuming nine-bit twos complement binary representation.
3. Convert the following decimal fractions to binary with a maximum of six places to the right of the binary point:
4. Convert the following number from binary to decimal.
5. Given a tiny computer that has a word size of 8 bits, what are the smallest negative numbers and the largest positive numbers that this computer can represent in Twos complement.
6. Perform the following binary multiplications, assuming unsigned integers:
7. Perform the following binary divisions, assuming unsigned integers:
8. Assume we are using the simple model for floating-point representation as given in the text (the representation uses a 14-bit format, 5 bits for the exponent with a bias of 15, a normalized mantissa of 8 bits, and a single sign bit for the number):
9. Decode the following ASCII message, assuming 7-bit ASCII characters and no parity: 1001010 1001111 1001000 1001110 0100000 1000100 1001111 1000101
10. Using the CRC polynomial 1101, compute the CRC code word for the information word, 01001101. Check the division performed at the receiver.