wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Number Systems and Boolean Algebra

Total questions: 15

Worksheet time: 15mins

Name
Class
Date
1.

What is a Boolean function?

a)

A function that outputs a string based on integer inputs.

b)

A function that only accepts numeric inputs.

c)

A function that maps binary inputs to a binary output.

d)

A function that maps binary inputs to decimal outputs.

2.

Define the AND gate and its truth table.

a)

Truth Table for NAND Gate: | A | B | Output | | 0 | 0 | 1 | | 0 | 1 | 1 | | 1 | 0 | 1 | | 1 | 1 | 0 |

b)

Truth Table for NOT Gate: | A | Output | | 0 | 1 | | 1 | 0 |

c)

Truth Table for OR Gate: | A | B | Output | | 0 | 0 | 0 | | 0 | 1 | 1 | | 1 | 0 | 1 | | 1 | 1 | 1 |

d)

Truth Table for AND Gate: | A | B | Output | |---|---|--------| | 0 | 0 | 0 | | 0 | 1 | 0 | | 1 | 0 | 0 | | 1 | 1 | 1 |

3.

Explain De Morgan's Theorems in Boolean algebra.

a)

NOT (A AND B) = (NOT A) AND (NOT B)

b)

NOT (A OR B) = (NOT A) OR (NOT B)

c)

NOT (A AND B) = (A OR B)

d)

De Morgan's Theorems: 1) NOT (A AND B) = (NOT A) OR (NOT B); 2) NOT (A OR B) = (NOT A) AND (NOT B).

4.

What is the binary equivalent of the decimal number 13?

a)

1001

b)

1101

c)

1110

d)

1011

5.

How many inputs can a NAND gate have?

a)

One input

b)

Three inputs

c)

Two or more inputs

d)

Only digital inputs

6.

What is the output of an OR gate when both inputs are false?

a)

undefined

b)

true

c)

null

d)

false

7.

Describe the significance of the truth table in logic circuits.

a)

It determines the power consumption of the circuit.

b)

The truth table is significant in logic circuits as it provides a clear representation of how inputs relate to outputs, aiding in design and analysis.

c)

It is used to measure the voltage across the circuit.

d)

It shows the physical layout of the circuit components.

8.

What is the hexadecimal representation of the decimal number 255?

a)

FF

b)

FE

c)

FF0

d)

F0

9.

Explain the concept of a logic circuit.

a)

A logic circuit is designed to process decimal numbers for arithmetic operations.

b)

A logic circuit processes binary inputs through logic gates to produce a binary output.

c)

A logic circuit uses analog signals to produce continuous outputs.

d)

A logic circuit is a type of mechanical device that operates on gears.

10.

What is the result of the Boolean expression A + A' ?

a)

0

b)

A

c)

1

d)

A'

11.

How do you convert a binary number to decimal?

a)

Sum of 2^position for each 1 in the binary number.

b)

Convert each digit to hexadecimal first.

c)

Add the binary digits together directly.

d)

Multiply each bit by 10 for conversion.

12.

Define the XOR gate and its function.

a)

The XOR gate outputs true if exactly one of its inputs is true.

b)

The XOR gate outputs true if both inputs are true.

c)

The XOR gate outputs true if both inputs are false.

d)

The XOR gate outputs false if at least one input is true.

13.

What is the principle of redundancy in Boolean algebra?

a)

Redundancy eliminates the need for simplification in Boolean algebra.

b)

Redundancy allows for the simplification of Boolean expressions by removing unnecessary variables.

c)

Redundancy increases the complexity of Boolean expressions.

d)

Redundancy is used to add more variables to Boolean equations.

14.

What is the output of a NOR gate when both inputs are true?

a)

true

b)

false

c)

undefined

d)

null

15.

What is the result of the Boolean expression A AND (A' OR B)?

a)

A

b)

B

c)

A OR B

d)

A'