

InterviewSolution
Saved Bookmarks
1. |
The truth table of the logic circuit shown-A. `{:(A,B,Y),(0,0,0),(1,0,1),(1,0,1),(1,1,1):}`B. `{:(A,B,Y),(0,0,0),(0,1,1),(1,0,1),(1,1,0):}`C. `{:(A,B,Y),(0,0,1),(0,1,0),(1,0,0),(1,1,0):}`D. `{:(A,B,Y),(0,0,0),(1,0,0),(0,1,0),(1,1,1):}` |
Answer» Correct Answer - B It is also called XOR gate the boolean expression for XOR gate is `Y=A.overline(B)+overline(A)+B` |
|