Question:

The Boolean expression for \(\text{X-OR}\) gate \(C = (A \oplus B)\) is equivalent to

Show Hint

Remember: XOR = Different → \((\overline{A}B) + (A\overline{B})\)
XNOR = Same → \((AB) + (\overline{A}\overline{B})\)
Updated On: May 8, 2026
  • \((\overline{A}\cdot B) + (A\cdot \overline{B})\)
  • \(A + (\overline{A}\cdot \overline{B})\)
  • \((A\cdot B) + \overline{B}\)
  • \((A\cdot B) + (\overline{A}\cdot \overline{B})\)
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation


Concept: XOR (Exclusive OR)
An XOR gate gives output:
• 1 when inputs are different
• 0 when inputs are same

Step 1: Truth Table

\[ \begin{array}{|c|c|c|} \hline A & B & A \oplus B \hline 0 & 0 & 0 0 & 1 & 1 1 & 0 & 1 1 & 1 & 0 \hline \end{array} \]

Step 2: Form Boolean expression

Output is 1 for:
• \(A=0, B=1 \Rightarrow \overline{A}B\)
• \(A=1, B=0 \Rightarrow A\overline{B}\) So, \[ A \oplus B = (\overline{A}B) + (A\overline{B}) \]

Step 3: Compare options


• (A) matches exactly \checkmark
• (B) simplifies to OR-like expression $\times$
• (C) incorrect $\times$
• (D) represents XNOR $\times$ Final Answer: Option (A)
Was this answer helpful?
0
0