verification of gates
0 Stars     1 Views    

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 

InputOutput10 0 1

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 111

3.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 1111

4.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 0

5.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 1110 

 

6.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 110 

7.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

You must login before you can post a comment.