Which gate gives output 1 only when both inputs are 1?
Boolean Logic — Important Questions
SUMMARY: The chapter on Boolean Logic introduces the fundamental concepts of Boolean algebra and its application in computer science.
KEY TOPICS: Boolean algebra, logic gates, truth tables, logical operators, De Morgan's laws, simplification of Boolean expressions, binary logic, applications of Boolean logic, digital circuits, logic circuit design
The Boolean expression A + AB simplifies to:
Check answerHide answer
The complement of a Boolean variable A is denoted as:
Check answerHide answer
Which of the following is a universal gate?
Check answerHide answer
De Morgan's first theorem states that (A + B)' equals:
Check answerHide answer
What is the result of the Boolean expression A . (B + C)?
Check answerHide answer
Which of the following represents the AND operation in Boolean algebra?
Check answerHide answer
What is the output of the truth table for the expression A + A' ?
Check answerHide answer
Which of the following is NOT a logical operator in Boolean algebra?
Check answerHide answer
In a truth table, how many rows are there for a Boolean expression with three variables?
Check answerHide answer
According to De Morgan's laws, which of the following is true?
Check answerHide answer
What is the output of a NAND gate when both inputs are 0?
Check answerHide answer
Which of the following Boolean expressions is equivalent to A + A . B?
Check answerHide answer
What is the primary purpose of using truth tables in Boolean logic?
Check answerHide answer
Which of the following circuits represents the logical expression A . (B + C)?
Check answerHide answer
State and verify the two De Morgan's theorems.
Draw the truth tables for AND OR and NOT gates.
What is meant by a universal gate? Give one example.
Simplify the Boolean expression A.B + A.B' using identity laws.
Differentiate between NAND gate and NOR gate.
What is a truth table and how is it used in Boolean logic?
View sample solutionHide solution
Explain the concept of logical operators in Boolean algebra.
View sample solutionHide solution
What is the significance of binary logic in computer science?
View sample solutionHide solution
Describe the process of simplifying a Boolean expression using the consensus theorem.
View sample solutionHide solution
How do you derive the output of a logic circuit from a given Boolean expression?
View sample solutionHide solution
Explain the basic logic gates with their truth tables and symbols.
State and prove De Morgan's theorems with the help of truth tables.
Implement an XOR gate using only NAND gates with a circuit diagram.
Simplify the Boolean expression F = A.B + A.B' + A'.B using K-map and verify.
Discuss the importance of universal gates with implementation of basic gates using only NAND.
Compare AND OR and NOT logic gates with the help of a table giving truth table for each.
Assertion (A): NAND is called a universal gate.
Reason (R): Any logic gate can be constructed using only NAND gates.
Show explanationHide explanation
Assertion (A): A.A' is always 0.
Reason (R): A and its complement cannot be true at the same time.
Show explanationHide explanation
Assertion (A): An OR gate gives output 0 only when all inputs are 0.
Reason (R): Any one input being 1 gives output 1 in an OR gate.
Show explanationHide explanation
Assertion (A): Boolean algebra has only two values 0 and 1.
Reason (R): It is used to design digital circuits.
Show explanationHide explanation
Assertion (A): De Morgan's theorems are widely used in simplifying Boolean expressions.
Reason (R): They convert AND operations to OR operations and vice versa.
Show explanationHide explanation
Assertion (A): The output of an AND gate is 1 only when both inputs are 1.
Reason (R): An AND gate implements the logical conjunction operation.
Show explanationHide explanation
Assertion (A): The expression A + A' = 1 is a fundamental identity in Boolean algebra.
Reason (R): This identity states that a variable ORed with its complement equals true.
Show explanationHide explanation
Assertion (A): A NOR gate is a universal gate.
Reason (R): Universal gates can be used to create any other gate.
Show explanationHide explanation
Statement 1: An XOR gate gives output 1 when inputs are different.
Statement 2: It gives output 0 when inputs are the same.
Show answerHide answer
Statement 1: Boolean algebra was developed by George Boole in 1854.
Statement 2: It is the foundation of digital electronics.
Show answerHide answer
Statement 1: A NOT gate has one input and one output.
Statement 2: It inverts the input.
Show answerHide answer
Statement 1: A truth table lists all possible input combinations and outputs.
Statement 2: For n inputs there are 2^n rows in the truth table.
Show answerHide answer
Statement 1: K-maps are used to simplify Boolean expressions.
Statement 2: They group adjacent 1s in powers of 2.
Show answerHide answer
Statement 1: A NAND gate is a universal gate that can be used to create any other gate.
Statement 2: The output of an AND gate is true only when both inputs are false.
Show answerHide answer
Statement 1: De Morgan's laws state that the negation of a conjunction is the disjunction of the negations.
Statement 2: The output of an OR gate is true only when at least one input is true.
Show answerHide answer
Statement 1: A NOR gate produces a true output only when both inputs are true.
Statement 2: Boolean expressions can be simplified using algebraic identities.
Show answerHide answer
-
Which gate gives output 1 only when both inputs are 1?AANDBORCNOTDXOR
-
A NAND gate is called a:AUniversal gateBSpecialised gateCOutput gateDCustom gate
-
Explain how an AND gate can be implemented using only NAND gates with a circuit diagram.
Show answersHide answers
-
What are the primary operations in Boolean algebra?AAND, OR, NOTBAdd, Subtract, MultiplyCXOR, NAND, NORDIncrement, Decrement, Shift
-
Explain the significance of truth tables in Boolean logic.
-
Which Boolean operation outputs true only when both inputs are true?AANDBORCNOTDXOR
Show answersHide answers
-
What does the first of De Morgan's laws state?ANOT (A AND B) = (NOT A) OR (NOT B)BNOT (A OR B) = (NOT A) AND (NOT B)CA AND B = NOT (A OR B)DA OR B = NOT (A AND B)
-
How do De Morgan's laws assist in Boolean expression simplification?
-
What is the second of De Morgan's laws?ANOT (A OR B) = (NOT A) AND (NOT B)BNOT (A AND B) = (NOT A) OR (NOT B)CA AND B = NOT (A OR B)DA OR B = NOT (A AND B)
Show answersHide answers
-
Which logic gate outputs true only when all its inputs are true?AAND gateBOR gateCNOT gateDXOR gate
-
What is the role of logic gates in digital circuits?
-
Name one type of logic gate that outputs true if at least one input is true.AOR gateBAND gateCNOT gateDNAND gate
Show answersHide answers
Identify the gate from the truth table (A, B inputs and Y output).
| A | B | Gate 1 (Y=AB) | Gate 2 (Y=A+B) | Gate 3 (Y=AB') |
|---|---|---|---|---|
| 0 | 0 | 0 | 0 | 0 |
| 0 | 1 | 0 | 1 | 1 |
| 1 | 0 | 0 | 1 | 1 |
| 1 | 1 | 1 | 1 | 0 |
For each Boolean expression, give the simplified form using identity laws.
| Expression | Simplified |
|---|---|
| A + 0 | ? |
| A + 1 | ? |
| A . 0 | ? |
| A + A | ? |
| A + A' | ? |
| A . A' | ? |
Study the truth table for three logic gates and answer:
| A | B | AND (A.B) | OR (A+B) | XOR (A^B) |
|---|---|---|---|---|
| 0 | 0 | 0 | 0 | 0 |
| 0 | 1 | 0 | 1 | 1 |
| 1 | 0 | 0 | 1 | 1 |
| 1 | 1 | 1 | 1 | 0 |
-
Which gate gives output 1 only when inputs are different?AANDBORCXORDNOT
-
An OR gate gives output 0 only when:ABoth 0BBoth 1CDifferentDCannot tell
-
Construct the truth tables of NAND NOR and XNOR gates from this table.
Show answersHide answers
What is the output of the AND gate when both inputs are true?
| Input A | Input B | Output (A AND B) |
|---|---|---|
| True | True | |
| True | False | |
| False | True | |
| False | False |
Study the truth tables of AND OR XOR gates and answer:
-
Which gate gives output 1 only when both inputs are 1?AANDBORCXORDNOT
-
Which gate gives output 1 only when inputs are different?AANDBORCXORDNAND
-
Construct truth tables for NAND NOR and XNOR from these.
Show answersHide answers
Make a full Computer Science paper on Boolean Logic.
Pick the question mix, set the marks, hit generate. You get a ready-to-print paper with an answer key.
Generate your paper — free