Total Pageviews

02/11/2011

Different Logic Gates

Logic gates are the general purpose electronics devices which have a specific o/p state for diffferent combinations of input.

Different types of Logic gates:-

1. AND Gate
 
Symbol 
 

Truth table     

INPUTOUTPUT
ABA AND B
000
010
100
111



Relationship between inputs and output

Output = A and B
                  or
                A.B
=========================================================


2. OR Gate


Symbol


Truth table

INPUTOUTPUT
ABA OR B
000
011
101
111



Relationship between inputs and output

Output =    A or B
                    or
                  A+B

===========================================================


3. NOT gate

Symbol

Truth Table
INPUTOUTPUT
ANOT A
01
10
Relationship between inputs and output

Output =  Not A
                    or
                    

=============================================================


4.NOR gate

Symbol

Truth Table
INPUTOUTPUT
ABA NOR B
001
010
100
110
Relationship between inputs and output

Output = Not(A OR B)
                         or 
                    

===========================================================

5.NAND gate

Symbol

Truth table
INPUTOUTPUT
ABA NAND B
001
011
101
110
Relationship between inputs and output

Output =  Not (A AND B)
                           or
                       

============================================================

6. XOR gate

Symbol


Truth Table
INPUTOUTPUT
ABA XOR B
000
011
101
110
Relationship between inputs and output

Output  =   [ A AND (NOT B) ] OR [ (NOT A) AND B ]
                                                    or
                                              

==============================================================

7. XNOR gate

Symbol


Truth Table
INPUTOUTPUT
ABA XNOR B
001
010
100
111
Relationship between inputs and output

Output = [ A AND B] OR [ (NOT A) AND (NOT B)]
                                     or
                       or 

















No comments:

Post a Comment