100 questions and answers on Boolean Algebra
Boolean Algebra Basics
What is Boolean Algebra?
Ans: Boolean Algebra is a branch of algebra that deals with binary variables (0 and 1) and logical operations.Who developed Boolean Algebra?
Ans: George Boole developed Boolean Algebra in the mid-19th century.What are the basic Boolean operations?
Ans: AND, OR, and NOT.What are the Boolean variables?
Ans: Boolean variables can have only two values: 0 (False) and 1 (True).What is a Boolean expression?
Ans: A Boolean expression consists of Boolean variables, constants, and logical operators.What are the basic Boolean laws?
Ans: Commutative, Associative, Distributive, Identity, Complement, and Idempotent Laws.
Basic Boolean Operations
What is the result of 1 AND 1?
Ans: 1What is the result of 1 AND 0?
Ans: 0What is the result of 0 OR 1?
Ans: 1What is the result of 0 OR 0?
Ans: 0What is the result of NOT 1?
Ans: 0What is the result of NOT 0?
Ans: 1What is the dual of the expression A + B?
Ans: A . B (AND operation)What is the dual of the expression A . B?
Ans: A + B (OR operation)
Boolean Laws
What is the commutative law for AND?
Ans: A . B = B . AWhat is the commutative law for OR?
Ans: A + B = B + AWhat is the associative law for AND?
Ans: (A . B) . C = A . (B . C)What is the associative law for OR?
Ans: (A + B) + C = A + (B + C)What is the distributive law?
Ans: A . (B + C) = A . B + A . CWhat is the identity law for AND?
Ans: A . 1 = AWhat is the identity law for OR?
Ans: A + 0 = AWhat is the null (dominance) law for AND?
Ans: A . 0 = 0What is the null (dominance) law for OR?
Ans: A + 1 = 1What is the complement law?
Ans: A . A' = 0 and A + A' = 1
De Morgan’s Theorems
What is De Morgan’s first theorem?
Ans: (A . B)' = A' + B'What is De Morgan’s second theorem?
Ans: (A + B)' = A' . B'What is the complement of (A . B . C)?
Ans: A' + B' + C'What is the complement of (A + B + C)?
Ans: A' . B' . C'
Boolean Simplification
Simplify A + A.B
Ans: ASimplify A . (A + B)
Ans: ASimplify A + A'B
Ans: A + BSimplify A . A'
Ans: 0Simplify A + A'
Ans: 1Simplify A . 1
Ans: ASimplify A + 1
Ans: 1
Karnaugh Map (K-Map)
What is a Karnaugh Map (K-Map)?
Ans: A graphical method for simplifying Boolean expressions.What is the maximum number of variables in a 4x4 K-map?
Ans: 4 variables.How many cells are in a 3-variable K-map?
Ans: 8 cells.What is the importance of adjacent grouping in K-map?
Ans: It helps in minimizing the Boolean expressions.What is an implicant in a K-map?
Ans: A combination of adjacent 1s that can be grouped.
Logic Gates
What are the basic logic gates?
Ans: AND, OR, NOT.What are universal gates?
Ans: NAND and NOR.What is the output of an XOR gate when both inputs are the same?
Ans: 0What is the output of an XOR gate when inputs are different?
Ans: 1What does a NAND gate do?
Ans: It gives the complement of the AND operation.What does a NOR gate do?
Ans: It gives the complement of the OR operation.Which gate is called the universal gate?
Ans: NAND and NOR.What is the output of an XNOR gate when both inputs are the same?
Ans: 1Which logic gate is used for binary addition?
Ans: XOR gate.
Miscellaneous Questions
What is the binary equivalent of decimal 5?
Ans: 101What is the binary equivalent of decimal 10?
Ans: 1010What is a half adder?
Ans: A combinational circuit that adds two binary numbers.What is a full adder?
Ans: A circuit that adds three binary digits (including carry).What is a flip-flop?
Ans: A bistable circuit used in sequential logic.Which flip-flop is the basic memory element?
Ans: D flip-flop.What is a multiplexer?
Ans: A device that selects one of many inputs and forwards it.What is a demultiplexer?
Ans: A device that takes a single input and directs it to multiple outputs.