IC Number | IC Name |
---|---|
74LS00 | Quad 2-input NAND Gates |
NAND gate - It is a digital circuit that has two or more inputs and produces an output, which is the inversion of logical AND of all those inputs.
Logic NAND Gates are available using digital circuits to produce the desired logical function and is given a symbol whose shape is that of a standard AND gate with a circle, sometimes called an "inversion bubble" at its output to represent the NOT gate symbol with the logical operation of the NAND gate.
As with the AND function seen previously, the NAND function can also have any number of individual inputs and commercial available NAND Gate IC's are available in standard 2, 3, or 4 input types. If additional inputs are required, then the standard NAND gates can be cascaded together to provide more inputs.
Boolean Expression Y = (A.B)'
"If either A or B are NOT true, then Y is true"
NAND gate operation is same as that of AND gate followed by an inverter. That's why the NAND gate symbol is represented like that.
Ex-NOR GATE - The Exclusive-NOR Gate, also written as “Ex-NOR” or “XNOR”, function is achieved by combining standard gates together to form more complex gate functions.
The logic function implemented by a 2-input Ex-NOR gate is given as “when both A AND B are the SAME” will give an output at Q. In general, an Exclusive-NOR gate will give an output value of logic “1” ONLY when there are an EVEN number of 1’s on the inputs to the gate (the inverse of the Ex-OR gate) except when all its inputs are “LOW”.
Then an Ex-NOR function with more than two inputs is called an “even function” or modulo-2-sum (Mod-2-SUM), not an Ex-NOR.
Boolean Expression Y = (A ⊕ B)'