Computer Science, asked by ankitaphadtare709, 26 days ago

The output of the boolean
expression Y=ABC+ABC +
(A+B)C'when A,B,C are 0,1,0 is​

Answers

Answered by remyanairlm
0

Answer:

The final output is Y=1.

Explanation:

Y=ABC + ABC + (A + B)C ' given A,B,C are 0,1,0 respectively:​

Y=0.1.0. + 0.1.0 + (0 + 1).1

Y=0 + 0 + 1.1

Y=0 + 0 + 1

Y=1

This question pertains to Boolean Algebra which is a branch of Mathematics that deals with logical operations on binary values.

Here, 0 represents false and 1 represents true.

As per the Boolean Algebra postulates, we have:

0 + 1 = 1 and 0.1 = 0.

Therefore, the final output of the question is Y=1.

Similar questions