retagged by
2,359 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 B

1 xor 1 xor 0 -> (1xor1 = 0) xor 0 -> 0 xor 0 = 0 so it is false
0 votes
0 votes
Ans B as it's EX-OR gate and having even number of input as '1'. So the output should be '0'.
0 votes
0 votes
Option B is the correct answer because 1 EXOR 1 EXOR 0 should be 0
0 votes
0 votes

EX OR operation can be seen as sum mod 2, that is divide the sum by 2 and see the remainder.

for example 1⊕1=2 mod 2=0,

1⊕0=1 mod 2=1,

0⊕0=0 mod 2=0,

0⊕1=1 mod 2=1

you can also check 1⊕1⊕1⊕1⊕1⊕1=6 mod 2=0

Given option (a) 1⊕0 will be 1 mod 2=1 true

option (b) 1⊕1⊕0 will be 2 mod 2=0 but in option it is given as 1 hence it is incorrect.

option (c) 1⊕1⊕1 will be 3 mod 2=1 true

option (d) 1⊕1=0 true 

Hence Option (B) Is Incorrect.

Answer:

Related questions

3 votes
3 votes
3 answers
1
admin asked Mar 31, 2020
3,926 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,057 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,486 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,980 views
A decimal number has $30$ digits. Approximately, how many digits would the binary representation have?$30$$60$$90$$120$