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

EXOR gate is an odd number of $1’s$ detector. It gives $0$ as output for the same input and for different input it gives $1$ as output, also the EXOR logic gate is left-associative.

  1. $1\oplus 0=1:$ This is true, different input,so output is $1.$
  2. $1\oplus 1\oplus 0=1:$ It can be written as: $((1\oplus 1)\oplus 0)\implies(0\oplus 0)=0\neq1$,so this options is false.
  3. $1\oplus 1\oplus 1=1$: $((1\oplus 1)\oplus 1)\implies (0\oplus 1)=1$,so this is true.
  4. $1\oplus 1=0$: This is true, for the same input value EXOR gate gives $0$ as output.

So Option $(B)$ is incorrect. 

Answer:

Related questions

3 votes
3 votes
3 answers
9
admin asked Mar 31, 2020
3,937 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
10
admin asked Mar 31, 2020
1,067 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
11
admin asked Mar 31, 2020
2,502 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
12
admin asked Mar 31, 2020
4,024 views
A decimal number has $30$ digits. Approximately, how many digits would the binary representation have?$30$$60$$90$$120$