Number system unit test

1 answer

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

  1. What is the binary representation of the decimal number 10? a) 1010
    b) 1001
    c) 1110
    d) 1100

  2. Which of the following is the hexadecimal representation of the decimal number 255? a) FF
    b) AA
    c) 100
    d) 10

  3. What is the octal equivalent of the binary number 110110? a) 66
    b) 32
    c) 34
    d) 42

  4. How many bits are needed to represent the decimal number 31 in binary? a) 5
    b) 6
    c) 4
    d) 7

  5. What is the decimal value of the hexadecimal number 2A? a) 42
    b) 28
    c) 26
    d) 54

Section 2: True or False

  1. The decimal number system is base 10.
    True or False?

  2. The binary number system is base 2, which consists of only the digits 0 and 1.
    True or False?

  3. The hexadecimal system uses the digits 0-9 and the letters A-F.
    True or False?

  4. Octal is a number system that uses base 8.
    True or False?

  5. Decimal numbers can be converted directly to binary without any intermediate steps.
    True or False?

Section 3: Short Answer Questions

  1. Convert the binary number 1011 to decimal.

  2. Convert the decimal number 65 to hexadecimal.

  3. Convert the octal number 57 to decimal.

  4. Convert the decimal number 15 to binary.

  5. Convert the hexadecimal number 3F to decimal.

Answer Key

Section 1: Multiple Choice Questions

  1. a) 1010
  2. a) FF
  3. c) 34
  4. a) 5
  5. a) 42

Section 2: True or False

  1. True
  2. True
  3. True
  4. True
  5. False

Section 3: Short Answer Questions

  1. 11
  2. 41
  3. 47
  4. 1111
  5. 63

Feel free to use or modify this unit test as needed!