wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Quiz on Number Systems and Codes

Total questions: 14

Worksheet time: 22mins

Name
Class
Date
1.

Which of the following binary numbers, when converted to decimal, gives the same value as hexadecimal '3A'?

a)

00111011

b)

00111010

c)

01101000

d)

11111010

2.

Analyze and choose the correct statement about the decimal equivalents of (1011)₂ and (11)₈.

a)

Both are equal

b)

Binary is greater

c)

Octal is greater

d)

Cannot be compared

3.

Among the following, which binary pattern is not valid as a BCD representation?

a)

0101

b)

1000

c)

1011

d)

0010

4.

Choose the most efficient method to convert (145)₁₀ to hexadecimal.

a)

Convert to binary, then to hex

b)

Divide by 16 and use remainders

c)

Multiply by 16

d)

Convert to octal and then to hex

5.

When comparing Gray code and binary code sequences, which characteristic makes Gray code more suitable for mechanical systems?

a)

More compact format

b)

Lower memory usage

c)

Single-bit variation between successive values

d)

Faster processing

6.

Which of the following operations shows an overflow in 4-bit 2's complement addition?

a)

0101 + 0010

b)

1100 + 1000

c)

1001 + 0110

d)

0110 + 0100

7.

Analyze this: You subtract (13)₁₀ from (7)₁₀ using 2's complement. What is the correct result in 8-bit binary?

a)

11111100

b)

00000110

c)

00000011

d)

11111101

8.

Which of the following binary subtraction operations is incorrect when done using 2's complement?

a)

0110 - 0011 = 0011

b)

0101 - 0101 = 0000

c)

1000 - 0010 = 0110

d)

0110 - 1001 = 1111

9.

Identify the key difference when using 1's complement instead of 2's complement in binary subtraction.

a)

Sign bit is lost

b)

No end-around carry in 1's complement

c)

Result is less accurate

d)

Requires an end-around carry

10.

You analyze the result of binary addition: 1111 + 0001. In 4-bit arithmetic, what can you conclude?

a)

Correct result

b)

Overflow occurred

c)

Underflow occurred

d)

Sign bit ignored

11.

Which of the following codes is not self-complementing?

a)

Excess-3

b)

2421

c)

5211

d)

BCD

12.

Analyze why Gray code is preferable in rotary encoders over binary code.

a)

Binary is complex

b)

Gray code uses fewer bits

c)

Less chance of multiple transition errors

d)

Easier to decode

13.

Two Gray code numbers differ by two bits. What does this indicate?

a)

Code error

b)

Hardware failure

c)

More than one step moved

d)

Noise in transmission

14.

A student uses 1's complement subtraction and gets the result 11110000. What should be done to correct it?

a)

Add 1 to result

b)

Flip the bits again

c)

Subtract from 0

d)

Perform XOR