Difficulty: Easy
Correct Answer: 1
Explanation:
Introduction / Context:
Boolean logic underpins digital electronics and programming. The AND operation outputs true only if all inputs are true. Understanding these fundamentals is essential for analyzing logic gates, truth tables, and conditional expressions in software.
Given Data / Assumptions:
Concept / Approach:
The AND truth rule is simple: 1 AND 1 → 1; 1 AND 0 → 0; 0 AND 1 → 0; 0 AND 0 → 0. In hardware, an AND gate only drives its output high when all inputs are high. Numeric outputs like 2 or 4 are meaningless here because Boolean logic does not sum values; it evaluates truth conditions.
Step-by-Step Solution:
Verification / Alternative check:
Test with a simple circuit simulator or Boolean algebra rules: A * B equals 1 only when A = 1 and B = 1.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing arithmetic with logic, or mixing OR/AND semantics.
Final Answer:
1
Discussion & Comments