388 views
1 votes
1 votes

1 Answer

0 votes
0 votes

Characteristic equation of MUX is exp1

Now S1 = A & S0 = B 

I0=D0= $\widehat{A}$

I1= D1=$\widehat{B}$

I2= D2=$\widehat{A}$

I3=D3= B

Putting them in equation we get 

$A′B′A′+A′BB′+AB′A′+ABB$

=>$F(A,B)=A′B′+AB$

It is exnor 

Related questions

0 votes
0 votes
1 answer
1
Keith Kr asked Dec 14, 2014
331 views
int f(int &x, int c){c=c-1;if(c==0) return 1;x=x+1;return f(x,c) * x;}What will be the output for f(p,p), if p is initialized to 4.