So, I have several of these questions. I just need help on one of them. Also would you provide the explanation to how you got your answer. I would be very much appreciated
Show the algebraic simplification of ab(!c) + !ab(!c) to b(!c).
So, I have several of these questions. I just need help on one of them. Also would you provide the explanation to how you got your answer. I would be very much appreciated
Show the algebraic simplification of ab(!c) + !ab(!c) to b(!c).
I have created three variables as per your needs and have chosen random values.
boolean a=true;
boolean b=false;
boolean c=true;
boolean res1;
boolean res2;
boolean final_Res;
res1=(a && b) &&(!c) || (!a && b && !c);
res2=(b && !c);
final_Res=res1==res2;
System.out.println(final_Res);
Hope this helps to solve your other problems..