retagged by
2,292 views
8 votes
8 votes

Which of the following logic expression is incorrect?

  1. $1\oplus0=1$
  2. $1\oplus1\oplus0=1$
  3. $1\oplus1\oplus1=1$
  4. $1\oplus1=0$
retagged by

10 Answers

0 votes
0 votes
option is B
Always XOR of even number of 1's is zero
In option A)  There is odd number of 1 so the answer is 1
In option B) There are even number of 1's so the answer is 0
In option C) There are odd number of 1's so answer is 1
In option D) There are even number of 1's so answer is 0
It is clear that incorrect option is B

Another method is
As we know  A XOR B = ~A.B +A.~B
Use it to each option
option A)  1 XOR 0 = 0.0 + 1.1 = 1
option B) 1 XOR 1 XOR 0
As we know XOR is commutative as well as associative
(1 XOR 1) XOR 0
(0.1 + 1.0) XOR 0
0 XOR 0 = 1.0 + 0.1 =0
option C) 1 XOR 1 XOR 1 = (1 XOR 1) XOR 1
(0.1 + 1.0) XOR 1 = 0 XOR 1 = 1.1 + 0.0 = 1
option D) 1 XOR 1 = 0.1 + 1.0 = 0
0 votes
0 votes
In Exclusive-OR gate if number of 1 is odd then then the output is high(1)

so according tho this B is the answer.
0 votes
0 votes
B is incorrect as XOR operation will high when odd no.of inputs are high i.e., high (1) for only (0,1) or (1,0) so in option B the given expression is 1 Xor 1 Xor 0 = 1 Xor 1=0 Xor 0=0

So Option B is the answer.
0 votes
0 votes

option (B) is the answer.

short trick for this question👇👇

in xor gate problem we will apply (addition of 1’s/2) and remender will be the answer..

(A)  ½ remeinder will be 1.(correct)

(B) 2/2 remeinder will be 0.(incorrect)

(C)3/2 remeinder will be 1(correct)

(D) 2/2 remeinder will be 0.(correct)

Answer:

Related questions

3 votes
3 votes
3 answers
1
admin asked Mar 31, 2020
3,871 views
In which of the following adder circuits, the carry look ripple delay is eliminated?Half adderFull adderParallel adderCarry-look ahead adder
3 votes
3 votes
2 answers
2
admin asked Mar 31, 2020
1,025 views
The output of a sequential circuit depends on present inputs onlypast inputs onlyboth present and past inputspresent outputs only
3 votes
3 votes
1 answer
3
admin asked Mar 31, 2020
2,449 views
In a ripple counter using edge triggered $JK$ flip-flops, the pulse input is applied to theclock input of all flip-flopsclock input of one flip-flop$J$ and $K$ inputs of ...
2 votes
2 votes
2 answers
4
admin asked Mar 31, 2020
3,916 views
A decimal number has $30$ digits. Approximately, how many digits would the binary representation have?$30$$60$$90$$120$