83,377 views
45 votes
45 votes
Given: A=1, B=1, C=1 for a 3-input NOR gate, what is the output value?

User Saurabh Bhatia
by
2.3k points

1 Answer

17 votes
17 votes

Answer:

0

Step-by-step explanation:

A NOR gate gives you the inverted output of an OR function. In numerical terms, the OR function gives you the maximum of the inputs:

A+B+C = max(A, B, C) = max(1, 1, 1) = 1

Then the output of the NOR function is its inverse:

(A+B+C)' = (1 -max(A, B, C)) = 1 -1 = 0

The output value is 0.

User IShubhamPrakash
by
2.5k points