Sure! Here's a unit test on number systems. This test covers various concepts, including binary, decimal, hexadecimal, and octal systems. You can use these questions for self-assessment or in an educational setting.
Number System Unit Test
Section 1: Multiple Choice Questions
-
What is the binary representation of the decimal number 10? a) 1010
b) 1001
c) 1110
d) 1100 -
Which of the following is the hexadecimal representation of the decimal number 255? a) FF
b) AA
c) 100
d) 10 -
What is the octal equivalent of the binary number 110110? a) 66
b) 32
c) 34
d) 42 -
How many bits are needed to represent the decimal number 31 in binary? a) 5
b) 6
c) 4
d) 7 -
What is the decimal value of the hexadecimal number 2A? a) 42
b) 28
c) 26
d) 54
Section 2: True or False
-
The decimal number system is base 10.
True or False? -
The binary number system is base 2, which consists of only the digits 0 and 1.
True or False? -
The hexadecimal system uses the digits 0-9 and the letters A-F.
True or False? -
Octal is a number system that uses base 8.
True or False? -
Decimal numbers can be converted directly to binary without any intermediate steps.
True or False?
Section 3: Short Answer Questions
-
Convert the binary number 1011 to decimal.
-
Convert the decimal number 65 to hexadecimal.
-
Convert the octal number 57 to decimal.
-
Convert the decimal number 15 to binary.
-
Convert the hexadecimal number 3F to decimal.
Answer Key
Section 1: Multiple Choice Questions
- a) 1010
- a) FF
- c) 34
- a) 5
- a) 42
Section 2: True or False
- True
- True
- True
- True
- False
Section 3: Short Answer Questions
- 11
- 41
- 47
- 1111
- 63
Feel free to use or modify this unit test as needed!