Computer Science – Boolean logic | e-Consult
Boolean logic (1 questions)
Login to see all questions.
Click on a question to view the answer
To create a circuit that outputs 'TRUE' if either X or Y is 'TRUE', we need a logical OR operation. The logic expression for this is: Output = X OR Y.
Here's the truth table:
| X | Y | Output (X OR Y) |
| FALSE | FALSE | FALSE |
| FALSE | TRUE | TRUE |
| TRUE | FALSE | TRUE |
| TRUE | TRUE | TRUE |
The logic circuit would consist of an OR gate with two inputs: one representing X and one representing Y. The output of the OR gate would indicate whether either X or Y is 'TRUE'.