What will be the output of given circuit diagram if A=1 & B=0. *
1 point

LOW
HIGH
both HIGH & LOW
mcq
Answers
Given:
A=1 & B=0
LOW
HIGH
both HIGH & LOW
To find:
What will be the output of given circuit diagram if A=1 & B=0. *
Solution:
Since the circuit diagram isn't given, considering the circuit consisting of any one of the logic gates let's solve the problem.
AND gate
If both of the inputs are high or 1 then only the output will be high
A B Output
1 0 0
0 1 0
0 0 0
1 1 1
NAND gate
This gate performs the operation opposite to that of the AND gate.
A B Output
1 0 1
0 1 1
0 0 1
1 1 0
OR gate
The output will be high or 1 when any one or all of the inputs are high or 1.
A B Output
1 0 1
0 1 1
0 0 0
1 1 1
NOR gate
This gate performs the operation opposite to that of the OR gate.
A B Output
1 0 0
0 1 0
0 0 1
1 1 0
XOR gate
The only time the output is high or 1 when the inputs are not the same.
A B Output
1 0 1
0 1 1
0 0 0
1 1 0
XNOR gate
The only time the output is high or 1 when one or all of the inputs are the same.
A B Output
1 0 0
0 1 0
0 0 1
1 1 1