Difficulty: Easy
Correct Answer: OR gate
Explanation:
Introduction / Context:
Understanding the basic input–output behaviors of logic gates is foundational in digital electronics. The OR gate is one of the primary building blocks used in control logic, condition detection, and combinational circuits. Knowing when its output goes HIGH helps you interpret truth tables and design or debug systems quickly.
Given Data / Assumptions:
Concept / Approach:
The Boolean expression for an n-input OR gate is Y = A + B + ... . In Boolean algebra, the plus sign represents logical OR, not arithmetic addition. The output Y equals 1 if at least one input is 1, and equals 0 only if all inputs are 0. This maps directly to the truth table and the gate's symbol-based reasoning in schematics.
Step-by-Step Solution:
Verification / Alternative check:
Create a quick truth table for two or three inputs. Count the rows with at least one HIGH; those rows yield Y = 1. This confirms the OR gate produces a HIGH for any input being HIGH. Simulation in a logic tool or quick breadboard test will show identical results.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
OR gate
Discussion & Comments