Which of the following logic gates has output low when one of the inputs is high?

Which of the following logic gates has output low when one of the inputs is high? Correct Answer NOR

The NOR gate is a digital logic gate with n inputs and one output that performs the operation of the OR gate followed by the NOT gate. NOR gate is designed by combining the OR and NOT gate. When any one of the inputs of the NOR gate is true, then the output of the NOR gate will be false.

The truth table is as follows:

A B A NOR B
0 0 1
0 1 0
1 0 0
1 1 0

Related Questions

Calculate the minimum number of AND gates, OR gates and NOT gates required to realize Exclusive-OR operation if only using AND, OR and NOT gates are allowed.
Exclusive-OR (XOR) logic gates can be constructed from what other logic gates?