Difficulty: Easy
Correct Answer: A = 0, B = 0, C = 0
Explanation:
Introduction / Context:
NOR gates are universal elements. Understanding their truth behavior is essential for designing active-LOW control signals and wired-OR types of logic in digital systems.
Given Data / Assumptions:
Concept / Approach:
The NOR function is X = NOT(A + B + C). The OR of any input being HIGH yields 1, and after inversion, the output becomes 0. Therefore, the only way for X to be 1 is for the OR term to be 0, which requires A = B = C = 0.
Step-by-Step Solution:
Compute OR: S = A + B + C.If any of A, B, or C equals 1, then S = 1.NOR output: X = NOT(S). Thus, if S = 1 → X = 0; if S = 0 → X = 1.S = 0 only when A = 0, B = 0, and C = 0.
Verification / Alternative check:
Truth table enumeration shows that the line with A = 0, B = 0, C = 0 is the only row producing X = 1; all other rows produce X = 0.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
A = 0, B = 0, C = 0
Discussion & Comments