in Digital Logic retagged by
2,857 views
5 votes
5 votes

Which of the following is not a valid rule of $\textsf{XOR}?$

  1. $\textsf{0 XOR 0 = 0}$
  2. $\textsf{1 XOR 1 = 1}$
  3. $\textsf{1 XOR 0 = 1}$
  4. $\textsf{B XOR B = 0}$
in Digital Logic retagged by
2.9k views

4 Answers

7 votes
7 votes
Best answer

Answer is B

XOR only gives 1 when inputs are 10 are 01

X  Y   X xor Y

0   0   0

1   1  0 

0    1  1

1  0    1

4 votes
4 votes

Answer : B

It should be   1 XOR 1 = 0

1 vote
1 vote
output of xor is high when there is odd number of 1's and low when even number of 1's

so option B is wrong 1 XOR 1=0(is true)
by
1 vote
1 vote
consider for 2 variable in XOR gate gives 1 if inputs are different(),gives 0 if inputs are same

so option b is correct
Answer:

Related questions