retagged by
1,162 views

1 Answer

Best answer
1 votes
1 votes

According to the function g=ac +bc' when c=0 ,data on line b will be selected and if c=1 data on ine a will be seected .

so ,g= E*x' + 0*x=E*x'

f   =y'x+y(output of 1st mux g)

   =(xy' + Ex'y)

note; the g function is given to determine the 0th and 1th line of the mux.

Related questions

0 votes
0 votes
3 answers
1
worst_engineer asked Oct 10, 2015
763 views
I know , this is pretty basic question , still could not get it rightI got the answer as $B + \overline{C}$Am I doing something terribly stupid here ?
2 votes
2 votes
3 answers
2
Laahithyaa VS asked Sep 9, 2023
895 views
. What will be the value returned by the following function, when it is called with 11?recur (int num){if ((num / 2)! = 0 ) return (recur (num/2) *10+num%2);else return 1...
0 votes
0 votes
4 answers
3
Sanjay Sharma asked Jun 7, 2016
1,916 views
If a= 10 then what will be the value of b in a C language code.If b= a++ + a++ + a++;.30.23.33.Undefined behaviour
0 votes
0 votes
1 answer
4
Keith Kr asked Dec 14, 2014
318 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.