Logic Gates Notes Easy
Logic Gates Notes Easy
Logic gates are basic building blocks of digital circuits. Each gate performs a specific logical function using
1. NOT Gate
The NOT gate is also called an inverter. It gives the opposite output of the input.
If input is 0, output is 1.
If input is 1, output is 0.
2. AND Gate
Otherwise, it gives 0.
Example:
0 AND 0 = 0
0 AND 1 = 0
1 AND 1 = 1
3. OR Gate
Example:
0 OR 0 = 0
0 OR 1 = 1
1 OR 1 = 1
4. NAND Gate
Logic Gates - Easy Notes for Beginners
Example:
1 AND 1 = 1 becomes 0
0 AND 1 = 0 becomes 1
5. NOR Gate
NOR = NOT + OR
Example:
0 OR 0 = 0 becomes 1
1 OR 1 = 1 becomes 0
Example:
0 XOR 0 = 0
0 XOR 1 = 1
1 XOR 1 = 0
Example:
0 XNOR 0 = 1
0 XNOR 1 = 0
Logic Gates - Easy Notes for Beginners
1 XNOR 1 = 1
Each gate has a symbol and a truth table that shows all possible input-output combinations. These tables are
Conclusion
Logic gates help computers make decisions using binary numbers. They are very important in all electronic
devices.