Digital Electronics - Logic Gates - Discussion

Discussion Forum : Logic Gates - General Questions (Q.No. 3)
3.
If a signal passing through a gate is inhibited by sending a LOW into one of the inputs, and the output is HIGH, the gate is a(n):
AND
NAND
NOR
OR
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
29 comments Page 1 of 3.

Anon said:   6 years ago
In this situation consider 3 inputs NAND gate.
for instance,

Where X column is the result and A B C are inputs,

A B C X
0 0 0 1
0 0 1 1
1 0 0 1
0 1 0 1
1 1 0 1
0 1 1 1
1 1 1 0

For every low input, there will be a high output.
Therefore it satisfies the given condition.
(5)

Ethan said:   9 years ago
According to me, Both Nand and OR gates are correct.
(4)

Abhijeet Neog said:   8 years ago
Why can't it be ex-or?
(2)

NIMASHA said:   9 years ago
@Ethan.

Check the answer using two inputs it also gives the same answer that I explain using three inputs.

Considering the truth table of NAND gate.
A B OUTPUT
0 0 1
0 1 1
1 0 1
1 1 0 = here we get the output HIGH when the two inputs are LOW.

Considering the truth table for OR gate.
A B OUTPUT
0 0 0
0 1 1
1 0 1
1 1 1 = here the output is HIGH when the two inputs are HIGH.

BUT question said first input must be LOW when the output is HIGH. So we can't get OR gate as the answer.
(1)

Shekhar Chaudhary said:   9 years ago
Drawing table:

A - B AND NAND OR NOR
0 - 0 --->0 1 0 1
0 - 1 --->0 1 1 0
1 - 0 --->0 1 1 0
1 - 1 --->1 0 1 0

Now let us take attention here in this table which will clear all the confusion.
(1)

Bayaw said:   1 decade ago
Take this for instance. (i.e. Input A-1 Input B-0)

OR 1 + 0 = 1 (NOT) = 0 (logic low) ----> NOR.
AND 1 x 0 = 0 (NOT) = 1 (logic high)----> NAND.
(1)

Rajashekar said:   1 decade ago
If signal passing through a gate is inhibited by sending a LOW into one of the those inputs then output is HIGH.

Because of at least one of the input is low then output is high of the nand gate.

Atul said:   7 years ago
It cannot be nor, as it both the input need to low or high as the same time, not nor will not be an option, only left with Nand as one input should be low at the time which is mentioned in the here.

BINODINI DAS said:   9 years ago
Expression:- y = A. B.

0 0 = 1 (high).
0 1 = 1 (high).
1 0 = 1 (high).
1 1 = 0 (low).

Simran said:   9 years ago
It combination of "AND" gate followed by "NOT" gate it is reverse operation of "AND" gate.

If both inputs are high output is low, if any one input is low output is high.

Expression:- y=A. B.

0 0=1 (high).

0 1=1 (high).

1 0=1 (high).

1 1=0 (low).


Post your comments here:

Your comments will be displayed after verification.