Difficulty: Easy
Correct Answer: 1
Explanation:
Introduction / Context:
Counting the number of HIGH outputs across all input combinations is a quick way to check understanding of a gate’s truth table and to verify K-map groupings or SOP/POS derivations for multi-input logic gates.
Given Data / Assumptions:
Concept / Approach:
NOR outputs HIGH only when the internal OR would be LOW. The OR of three inputs is LOW only for the all-zero case. Therefore, the NOR gate’s output is HIGH for exactly one input combination (A = 0, B = 0, C = 0) and LOW for all others that include at least one HIGH input.
Step-by-Step Solution:
Verification / Alternative check:
Write the Boolean expression for 3-input NOR: Y = (A + B + C)’. Evaluate it at (0,0,0) → (0)’ = 1; at any other row, A + B + C = 1 → (1)’ = 0. Count of HIGH outputs is therefore 1.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
1
Discussion & Comments