242 views
0 votes
0 votes

1 Answer

Best answer
1 votes
1 votes

convert given f2 from expression to SOP form  we get F2= Sigma( 4 5  6 7  8  9 10 11 13 )

given : f1 = (1 4 5 8 10 12 14 15)

Since , F1 AND F2 = Common terms  i.e 4 5 8 10

f1 not given          
   

And gate  

        f1 and f2 =  commmon terms       
f2 4 5 6 7 8 9 10 11 13                                      
         1 4 5 8 10 12 14 15

OR gate 

 f=1 4 5 8 10 12 14 15
 

 

 

 

 

 

 

f3

To find

Not gate

not(F3)= 1 12 14 15 + d(4 5 8 10 )      
             

Since , F1 AND F2 = Common terms  i.e 4 5 8 10

F3  is NOT gate so it will contain all elements which are not in F  : we get sigma ( 0 2 3  6 7 9 11 13  )  which is equivalent to pie( 1  12 14 15)

4 5 8 10 exits as dont care condition in f3 as it could be derived from f1 and f2 , i.e. it may not be present in F3

Hence answer is C!

selected by

Related questions

7 votes
7 votes
3 answers
1
Parshu gate asked Nov 20, 2017
790 views
What is the output of the following program?#include<stdio.h int main() { int array[]={10, 20, 30, 40}; printf(“%d”, -2[array]); return 0; }$-60$$-30$$60$Garbage valu...
0 votes
0 votes
0 answers
2
Nishi Agarwal asked Mar 10, 2019
514 views
A(n){if(n<1) return (1);else return A(n-2)+B(n-1);}B(n){if(n<=1) return 1;else return B(n-1)+A(n-2);}
2 votes
2 votes
1 answer
3
2 votes
2 votes
2 answers
4
Khushal Kumar asked Jul 8, 2017
1,297 views
#include<stdio.h int main(void){ int a = 1, 2, 3; printf("%d", a); return 0;}