Information Representation - Try out these sample questions...
Binary IntegerQuestions...
1. How would you represent the number 6 as a binary number:
2. How would you represent the number 73 as a binary number:
3a. Perform the following binary arithmetic:
00000110
01001001 +
3b. Perform the following binary arithmetic:
00000110
01001011 +
4. What is the name of the condition that occurs when performing the following binary arithmetic:
11001001
01100010 +
5. How would you represent the number -71 using 'Sign and Magnitude' and assuming 8 bits.
6. What is the largest number that you can represent using'Sign and Magnitude' and assuming 8 bits. Express your answer as a denary number.
7. How would you represent the number -71 using 'One's Compliment' and assuming 8 bits.
8. What is the most negative number that you can represent using 'One's Compliment' and assuming 8 bits. Express your answer as a denary number.
9. What is the largest number that you can represent using 'Two's Compliment' and assuming 8 bits. Express your answer as a denary number.
10. What is the most negative number that you can represent using 'Two's Compliment' and assuming 8 bits. Express your answer as a denary number.
11. What is the denary value of the following binary number: 11010111, given that the number is represented in binary using 'Two's Compliment'.
12. How would the denary number -10 be represented in binary using 'Two's Compliment' and assuming 8 bits.
13. What is the denary result of the following sum given that the numbers shown are represented in binary using 'Two's Compliment' and assuming 8 bits.
00000110
10010000
Floating Point Questions...
14a. Given an 8 bit floating point representation with 5 bits for the fraction part and 3 bits for the exponent part, what is the largest number that can be stored?
14b. Given the same representation, what is the next closest number (to your answer for 14a) that can be represented?
15. Given an 8 bit floating point representation with 4 bits for the fraction part and 4 bits for the exponent part, what is the largest number that can be stored?
15b. Given the same representation, what is the next closest number (to your answer for 15a) that can be represented?
Hex/Octal Questions...
16. What is the denary value of the hex number FFF:
17. How would you express the positive binary integer 01101100 in hexadecimal?
18. What is the binary representation of the Octal number 62?