Difficulty: Easy
Correct Answer: all inputs are LOW
Explanation:
Introduction / Context:
OR gates are fundamental building blocks in digital logic. Understanding their truth tables is essential for analyzing combinational circuits, designing control logic, and debugging gate-level implementations in microcontrollers, FPGAs, and ASICs.
Given Data / Assumptions:
Concept / Approach:
An OR gate outputs HIGH if at least one of its inputs is HIGH. Conversely, its output is LOW only when every input is LOW. This behavior is captured succinctly by the Boolean expression: Y = A + B + C + ... where + denotes the OR operation. If every input equals 0, then Y = 0; otherwise Y = 1.
Step-by-Step Solution:
Verification / Alternative check:
Constructing a truth table confirms that the only row producing a LOW output is the row where all inputs are LOW. Any single HIGH immediately makes the output HIGH, reflecting the inclusive nature of OR.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
all inputs are LOW
Discussion & Comments