The symbols for the 3 basic logic gates AND OR NOT This logic gate has 2 inputs and 1 output.
The output is TRUE only if one input AND the other input is TRUE.
This logic gate can be written as a logic statement:
O = A AND B
This logic gate has 2 inputs and 1 output.
The output is TRUE if one input OR the other input isTRUE.
This logic gate can be written as a logic statement:
O = A OR B
This logic gate has 1 input and 1 output.
The output is TRUE if the input is FALSE and visa-versa.
This logic gate can be written as a logic statement:
O = NOT A
Comments
No comments have yet been made