Difficulty: Easy
Correct Answer: AND gate
Explanation:
Introduction / Context:
AND gates implement logical multiplication. In design practice, they are commonly used as enables that require all conditions to be true simultaneously. Recognizing the defining behavior of an AND gate helps when translating Boolean expressions into hardware and validating designs against truth tables.
Given Data / Assumptions:
Concept / Approach:
The Boolean expression for an AND gate is Y = A · B · C · ... . A product evaluates to 1 only if every factor equals 1. If any input is 0, the product is 0, so the output must be LOW. This single rule fully defines the AND function across all input combinations.
Step-by-Step Solution:
Verification / Alternative check:
Create a truth table for two or three inputs to visualize. The only row that yields HIGH is the row where all inputs are 1. Every other row includes at least one 0 and therefore produces 0 at the output, validating the definition of AND.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
AND gate
Discussion & Comments