Question:medium

Which of the following correctly represents the AND logic gate?

Show Hint

AND gates are used in digital circuits where all conditions must be true for the output to be true.
Updated On: Nov 26, 2025
  • Output = 1 if at least one input is 1
  • Output = 1 only if all inputs are 1
  • Output = 0 if all inputs are 0
  • Output = 1 if all inputs are 0
Hide Solution

The Correct Option is B

Solution and Explanation

An AND gate implements logical multiplication. The output \( Y \) is defined by the equation \( Y = A \cdot B \), where \( A \) and \( B \) represent the inputs. The behavior is illustrated in the following truth table: \[ \begin{array}{|c|c|c|} \hline A & B & Y \\ \hline 0 & 0 & 0 \\ 0 & 1 & 0 \\ 1 & 0 & 0 \\ 1 & 1 & 1 \\ \hline \end{array} \]

Was this answer helpful?
0