Difficulty: Easy
Correct Answer: Ex-NOR gate
Explanation:
Introduction / Context:
Digital systems frequently need to compare two signals. The gate that outputs HIGH when the inputs are the same implements equality at the 1-bit level and is commonly used in comparators and parity circuits.
Given Data / Assumptions:
Concept / Approach:
The exclusive-NOR (XNOR) function is 1 exactly when inputs match. Boolean form: X = A*B + A'B'. This is the complement of XOR, which is 1 when inputs differ.
Step-by-Step Solution:
Verification / Alternative check:
Construct XNOR from simpler gates: two ANDs (AB and A'*B') feeding an OR implements equality, confirming the behavior.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing XOR with XNOR because of similar names; remember XNOR is the complemented XOR and corresponds to equality.
Final Answer:
Ex-NOR gate
Discussion & Comments