0

I am trying to create a circuit based on this truth table below: can you describe how to make the circuit using only logic gates

In_1 In_2 In_3  Out
 0    0    0     0
 0    0    1     1
 0    1    0     1
 0    1    1     1
 1    0    0     1
 1    0    1     1
 1    1    0     1
 1    1    1     1

This is what I have done so far my work

However, this circuit is not working as expected. It is giving me this error: error

Please let me know what I am doing wrong and how do I fix this? Thanks in Advance!

randomUser786
  • 1,527
  • 3
  • 13
  • 25

1 Answers1

0

A circuit based on that truth table would just be a simple OR gate, the AND gate is redundant in your circuit. This might also fix the error you're getting.

Crayon
  • 1
  • 2