Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
Understanding gate-level Boolean expressions is essential for simplification, implementation, and verification. A multi-input AND gate outputs HIGH only if all inputs are HIGH.
Given Data / Assumptions:
Concept / Approach:
The AND operation corresponds to logical multiplication. For three inputs, the output is the logical product of all three: X = A * B * C. Conventionally the multiplication sign is omitted, so X = ABC is standard shorthand.
Step-by-Step Solution:
Verification / Alternative check:
Truth table rows with any 0 input lead to X = 0; only A=1, B=1, C=1 yields X=1, matching ABC.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing AND with OR; forgetting implied multiplication in Boolean notation; mixing up AND and NAND.
Final Answer:
Correct
Discussion & Comments