Explore tens of thousands of sets crafted by our community.
Digital Logic Gates
7
Flashcards
0/7
NOT
Truth Table: A | Q 0 | 1 1 | 0 Typical Use: Used to invert the input signal; a logical negation.
NOR
Truth Table: A B | Q 0 0 | 1 0 1 | 0 1 0 | 0 1 1 | 0 Typical Use: Used to implement logical disjunction followed by negation, where Q is true only if both inputs are false.
OR
Truth Table: A B | Q 0 0 | 0 0 1 | 1 1 0 | 1 1 1 | 1 Typical Use: Used to implement logical inclusive disjunction where Q is true if at least one input is true.
NAND
Truth Table: A B | Q 0 0 | 1 0 1 | 1 1 0 | 1 1 1 | 0 Typical Use: Used to implement logical conjunction followed by negation, where Q is true except when both A and B are true.
XOR
Truth Table: A B | Q 0 0 | 0 0 1 | 1 1 0 | 1 1 1 | 0 Typical Use: Used to implement exclusive disjunction, where Q is true if the inputs are different.
AND
Truth Table: A B | Q 0 0 | 0 0 1 | 0 1 0 | 0 1 1 | 1 Typical Use: Used to implement logical conjunction where Q is true if both A and B are true.
XNOR
Truth Table: A B | Q 0 0 | 1 0 1 | 0 1 0 | 0 1 1 | 1 Typical Use: Used to implement exclusive disjunction followed by negation, where Q is true if the inputs are the same.
© Hypatia.Tech. 2024 All rights reserved.