NEW
Font size
WorksheetsNumber Systems and Boolean Algebra
Total questions: 15
Worksheet time: 15mins
What is a Boolean function?
A function that outputs a string based on integer inputs.
A function that only accepts numeric inputs.
A function that maps binary inputs to a binary output.
A function that maps binary inputs to decimal outputs.
Define the AND gate and its truth table.
Truth Table for NAND Gate: | A | B | Output | | 0 | 0 | 1 | | 0 | 1 | 1 | | 1 | 0 | 1 | | 1 | 1 | 0 |
Truth Table for NOT Gate: | A | Output | | 0 | 1 | | 1 | 0 |
Truth Table for OR Gate: | A | B | Output | | 0 | 0 | 0 | | 0 | 1 | 1 | | 1 | 0 | 1 | | 1 | 1 | 1 |
Truth Table for AND Gate: | A | B | Output | |---|---|--------| | 0 | 0 | 0 | | 0 | 1 | 0 | | 1 | 0 | 0 | | 1 | 1 | 1 |
Explain De Morgan's Theorems in Boolean algebra.
NOT (A AND B) = (NOT A) AND (NOT B)
NOT (A OR B) = (NOT A) OR (NOT B)
NOT (A AND B) = (A OR B)
De Morgan's Theorems: 1) NOT (A AND B) = (NOT A) OR (NOT B); 2) NOT (A OR B) = (NOT A) AND (NOT B).
What is the binary equivalent of the decimal number 13?
1001
1101
1110
1011
How many inputs can a NAND gate have?
One input
Three inputs
Two or more inputs
Only digital inputs
What is the output of an OR gate when both inputs are false?
undefined
true
null
false
Describe the significance of the truth table in logic circuits.
It determines the power consumption of the circuit.
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.
It is used to measure the voltage across the circuit.
It shows the physical layout of the circuit components.
What is the hexadecimal representation of the decimal number 255?
FF
FE
FF0
F0
Explain the concept of a logic circuit.
A logic circuit is designed to process decimal numbers for arithmetic operations.
A logic circuit processes binary inputs through logic gates to produce a binary output.
A logic circuit uses analog signals to produce continuous outputs.
A logic circuit is a type of mechanical device that operates on gears.
What is the result of the Boolean expression A + A' ?
0
A
1
A'
How do you convert a binary number to decimal?
Sum of 2^position for each 1 in the binary number.
Convert each digit to hexadecimal first.
Add the binary digits together directly.
Multiply each bit by 10 for conversion.
Define the XOR gate and its function.
The XOR gate outputs true if exactly one of its inputs is true.
The XOR gate outputs true if both inputs are true.
The XOR gate outputs true if both inputs are false.
The XOR gate outputs false if at least one input is true.
What is the principle of redundancy in Boolean algebra?
Redundancy eliminates the need for simplification in Boolean algebra.
Redundancy allows for the simplification of Boolean expressions by removing unnecessary variables.
Redundancy increases the complexity of Boolean expressions.
Redundancy is used to add more variables to Boolean equations.
What is the output of a NOR gate when both inputs are true?
true
false
undefined
null
What is the result of the Boolean expression A AND (A' OR B)?
A
B
A OR B
A'
