You must login before you can post a comment.
Author: Abdulkarim
Forked from: ARYAN RAJPOOT/verification of gates
Project access type: Public
Description:
Verification of gates
Description:
1.NOT GATE :It reverses the logic state. If the input is 1, then the output is 0. If the input is 0, then the output is 1.
Inverter or NOT gate
2.AND GATE: The output is "true" when both inputs are "true." Otherwise, the output is "false." In other words, the output is 1 only when both inputs one AND two are 1.
AND gate truth table
Input 1Input 2Output0 0 0 0 10 10 0 1113.OR GATE: The output is "true" if either or both of the inputs are "true." If both inputs are "false," then the output is "false." In other words, for the output to be 1, at least input one OR two must be 1.
OR gate truth table
Input 1Input 2Output0 0 0 0 1110 11114.XOR GATE: The XOR ( exclusive-OR ) gate acts in the same way as the logical "either/or." The output is "true" if either, but not both, of the inputs are "true." The output is "false" if both inputs are "false" or if both inputs are "true."
XOR gate truth table
Input 1Input 2Output0 0 0 0 1110 111 05.NAND GATE :The NAND gate operates as an AND gate followed by a NOT gate. It acts in the manner of the logical operation "and" followed by negation. The output is "false" if both inputs are "true." Otherwise, the output is "true."
NAND gate truth table
Input 1Input 2Output 00 10 1110 11106.NOR GATE :The NOR gate is a combination OR gate followed by an inverter. Its output is "true" if both inputs are "false." Otherwise, the output is "false."
NOR gate truth table
Input 1Input 2Output0 0 1 010 10 0 1107.XNOR GATE: The XNOR (exclusive-NOR) gate is a combination XOR gate followed by an inverter. Its output is "true" if the inputs are the same, and "false" if the inputs are different.
XNOR gate truth table
Input 1Input 2Output0 0 10 10 1 0 0111
Created: Dec 01, 2024
Updated: Dec 01, 2024
Comments