SlideShare ist ein Scribd-Unternehmen logo
1 von 25
UNIVERSAL PROPERTY
LOGIC GATES
UNIVERSAL GATE
• A universal gate is a logic gate which can
implement any Boolean function without the
need to use any other type of logic gate. The
NOR gate and NAND gate are universal gates.
This means that you can create any logical
Boolean expression using only NOR gates or
only NAND gates.
• In practice, this is advantageous since NOR
and NAND gates are economical and easier to
fabricate than other logic gates. So much so
that an AND gate is typically implemented as a
NAND gate followed by an inverter (not the
other way around)! Similarly, an OR gate is
typically realised as a NOR gate followed by an
inverter.
NAND Gate As NOT Gate
• The below diagram is of a two-input NAND gate. The first part is an
AND gate and the second part is a dot after it represents a NOT gate.
• During the operation of the NAND gate, the inputs are first going
through AND gate and after that, the output gets reversed, and we
get the final output. Now we will look at the truth table of NAND
gate.
• We will consider the truth table of the above NAND gate i.e. a two-
input NAND gate. The two inputs are A and B.
Now we will see how this gate can be used
to make other gates.
DESIRED GATE NAND CONSTRUCTION
NAND GATE AS AND GATE
• An AND gate is made by following a NAND gate with NOT gate as
shown below. This is given a NOT NAND i.e, AND
DESIRED GATE NAND CONSTRUCTION
NAND GATE AS OR GATE
• The truth of nand gate is examined , it can be seen that if any of the
inputs are 0 the output is 1. however to be an OR gate , if any input is
1, the output should be 1. therefore, if the inputs are inverted, any
high input will trigger a high output.
DESIRED GATE NAND CONSTRUCTION
NAND AS NOR GATE
• A NOR Gate is simply an OR gate with an converted input.
DESIRED GATE NAND CONSTRUCTION
NAND AS X-OR GATE
• An XOR gate is made by connecting four NAND gates as shown below. This construction entails a propagation delay
three times that of a single NAND gate. , noting from de Morgan's Law that a NAND gate is an inverted-input OR gate.
This construction uses five gates instead of four.
• Boolean Expression Y = A.B' + 'A.B = (A ⊕ B)
• "If inputs having an odd number of ones, then Y is true"
DESIRED GATE NAND CONSTRUCTION
NAND AS X-NOR GATE
• 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.
DESIRED GATE NAND CONSTRUCTION
UNIVERSAL PROPERTY OF NOR GATE
NOR AS NOT GATE
• As a NOR gate is equivalent to an OR gate leading to NOT gate, joining
the inputs makes the output of the "OR" part of the NOR gate the
same as the input, eliminating it from consideration and leaving only
the NOT part. Desired NOT Gate. NOR Construction. Q = NOT( A ) = A
NOR A.
DESIRED GATE NOR CONSTRUCTION
NOR GATE AS OR GATE
• The OR gate is simply a NOR Gate followed by NOT gate
DEFN..
• The combinational logic circuits are the circuits that contain different
types of logic gates. Simply, a circuit in which different types of logic
gates are combined is known as a combinational logic circuit.
• The output of the combinational circuit is determined from the
present combination of inputs, regardless of the previous input. The
input variables, logic gates, and output variables are the basic
components of the combinational logic circuit. There are different
types of combinational logic circuits, such as Adder, Subtractor,
Decoder, Encoder, Multiplexer, and De-multiplexer.
There are the following characteristics of the combinational logic circuit:
At any instant of time, the output of the combinational circuits depends only on the present
input terminals.
The combinational circuit doesn't have any backup or previous memory. The present state of
the circuit is not affected by the previous state of the input.
The n number of inputs and m number of outputs are possible in combinational logic
circuits.
The 'n' input variable comes from the
external source while the 'm' output
variable goes to the external
destination. In many applications, the
source or destinations are storage
registers.
COMBINATIONAL CIRCUITS
• HALF ADDER
The half adder is a basic building block having two inputs and two outputs. The
adder is used to perform OR operation of two single bit binary numbers. The carry
and sum are two output states of the half adder.
• Full Adder
The half adder is used to add only two numbers. To overcome this problem, the full
adder was developed. The full adder is used to add three 1-bit binary numbers A, B,
and carry C. The full adder has three input states and two output states i.e., sum
and carry.
COMBINATIONAL CIRCUITS
• Half Subtractors
The half subtractor is also a building block of subtracting two binary
numbers. It has two inputs and two outputs. This circuit is used to subtract
two single bit binary numbers A and B. The 'diff' and 'borrow' are the two
output state of the half adder.
• Full Subtractors
The Half Subtractor is used to subtract only two numbers. To overcome this
problem, full subtractor was designed. The full subtractor is used to subtract
three 1-bit numbers A, B, and C, which are minuend, subtrahend, and
borrow, respectively. The full subtractor has three input states and two
output states i.e., diff and borrow.
COMBINATIONAL CIRCUITS
• Multiplexers
The multiplexer is a combinational circuit that has n-data inputs and a single
output. It is also known as the data selector which selects one input from the
inputs and routes it to the output. With the help of the selected inputs, one
input line from the n-input lines is selected. The enable input is denoted by
E, which is used in cascade.
• De-multiplexers
A De-multiplexer performs the reverse operation of a multiplexer. The de-
multiplexer has only one input, which is distributed over several outputs.
One output line is selected at a time by selecting lines. The input is
transmitted to the selected output line.
COMBINATIONAL CIRCUITS
• Decoder
• A decoder is a combinational circuit having n inputs and to a maximum of
m = 2n outputs. The decoder is the same as the de-multiplexer. The only
difference between de-multiplexer and decoder is that in the decoder,
there is no data input. The decoder performs an operation that is
completely opposite of an encoder.
• Encoder
• The encoder is used to perform the reverse operation of the decoder. An
encoder having n number of inputs and m number of outputs is used to
produce m-bit binary code which is related to the digital input number. The
encoder takes the digital word and converts it into another digital word.
HALF-ADDER
• The Half-Adder is a basic building block of adding two numbers as two inputs and
produce out two outputs. The adder is used to perform OR operation of two
single bit binary numbers. The augent and addent bits are two input states, and
'carry' and 'sum 'are two output states of the half adder
In the above table,
'A' and' B' are the input states, and 'sum' and 'carry' are the output
states.
The carry output is 0 in case where both the inputs are not 1.
The least significant bit of the sum is defined by the 'sum' bit.
The SOP form of the sum and carry are as follows:
Sum = x'y+xy'
Carry = xy
Sum = x'y+xy'
Carry = xy
FULL ADDER
• The half adder is used to add only two numbers. To overcome this
problem, the full adder was developed. The full adder is used to add
three 1-bit binary numbers A, B, and carry C. The full adder has three
input states and two output states i.e., sum and carry.
In the above table,
'A' and' B' are the input variables. These variables represent the two significant bits
which are going to be added
'Cin' is the third input which represents the carry. From the previous lower significant
position, the carry bit is fetched.
The 'Sum' and 'Carry' are the output variables that define the output values.
The eight rows under the input variable designate all possible combinations of 0 and 1
that can occur in these variables.
Sum = x' y' z+x' yz+xy' z'+xyz
Carry = xy+xz+yz
Sum = x' y' z+x' yz+xy' z'+xyz
Carry = xy+xz+yz
THANK YOU

Weitere ähnliche Inhalte

Ă„hnlich wie UNIVERSAL PROPERTY.pptx

11_Fundamentals_of_Digital_Electronics_L.pptx
11_Fundamentals_of_Digital_Electronics_L.pptx11_Fundamentals_of_Digital_Electronics_L.pptx
11_Fundamentals_of_Digital_Electronics_L.pptxElisée Ndjabu
 
introduction of logic gates
introduction of logic gates introduction of logic gates
introduction of logic gates HASNAINNAZIR1
 
logic gates
logic gates logic gates
logic gates MohiniChorat
 
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.Satya P. Joshi
 
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates. Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates. Satya P. Joshi
 
Digital Electronics Unit_1.pptx
Digital Electronics Unit_1.pptxDigital Electronics Unit_1.pptx
Digital Electronics Unit_1.pptxThapar Institute
 
Logic gates
Logic gatesLogic gates
Logic gatesdawood0317
 
perform operation with boolean algebra
perform operation with boolean algebraperform operation with boolean algebra
perform operation with boolean algebraBrenda Debra
 
integrated circutits -324567654-12-345-.pptx
integrated circutits -324567654-12-345-.pptxintegrated circutits -324567654-12-345-.pptx
integrated circutits -324567654-12-345-.pptxFermanIbrahim
 
Switching theory unit 2
Switching theory unit 2Switching theory unit 2
Switching theory unit 2SURBHI SAROHA
 
Combinational circuits
Combinational circuits Combinational circuits
Combinational circuits DrSonali Vyas
 
STLD-Combinational logic design
STLD-Combinational  logic design STLD-Combinational  logic design
STLD-Combinational logic design Abhinay Potlabathini
 
Universal Gates - Aneesa N Ali
Universal Gates - Aneesa N AliUniversal Gates - Aneesa N Ali
Universal Gates - Aneesa N AliDipayan Sarkar
 
LOGICAL GATES mayank chauhan.pdf
LOGICAL GATES mayank chauhan.pdfLOGICAL GATES mayank chauhan.pdf
LOGICAL GATES mayank chauhan.pdfMeghaChauhan75
 

Ă„hnlich wie UNIVERSAL PROPERTY.pptx (20)

11_Fundamentals_of_Digital_Electronics_L.pptx
11_Fundamentals_of_Digital_Electronics_L.pptx11_Fundamentals_of_Digital_Electronics_L.pptx
11_Fundamentals_of_Digital_Electronics_L.pptx
 
introduction of logic gates
introduction of logic gates introduction of logic gates
introduction of logic gates
 
Electronics: Logic Gates
Electronics: Logic GatesElectronics: Logic Gates
Electronics: Logic Gates
 
logic gates
logic gates logic gates
logic gates
 
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
 
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates. Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
Logic gates - AND, OR, NOT, NOR, NAND, XOR, XNOR Gates.
 
Digital Electronics Unit_1.pptx
Digital Electronics Unit_1.pptxDigital Electronics Unit_1.pptx
Digital Electronics Unit_1.pptx
 
Logic gates
Logic gatesLogic gates
Logic gates
 
BASIC LOGIC GATES.pdf
BASIC LOGIC GATES.pdfBASIC LOGIC GATES.pdf
BASIC LOGIC GATES.pdf
 
Logic gates
Logic gatesLogic gates
Logic gates
 
Chapter 3.pptx
Chapter 3.pptxChapter 3.pptx
Chapter 3.pptx
 
Logic gates
Logic gatesLogic gates
Logic gates
 
perform operation with boolean algebra
perform operation with boolean algebraperform operation with boolean algebra
perform operation with boolean algebra
 
integrated circutits -324567654-12-345-.pptx
integrated circutits -324567654-12-345-.pptxintegrated circutits -324567654-12-345-.pptx
integrated circutits -324567654-12-345-.pptx
 
Switching theory unit 2
Switching theory unit 2Switching theory unit 2
Switching theory unit 2
 
Combinational circuits
Combinational circuits Combinational circuits
Combinational circuits
 
STLD-Combinational logic design
STLD-Combinational  logic design STLD-Combinational  logic design
STLD-Combinational logic design
 
UNIT1-part2.pptx
UNIT1-part2.pptxUNIT1-part2.pptx
UNIT1-part2.pptx
 
Universal Gates - Aneesa N Ali
Universal Gates - Aneesa N AliUniversal Gates - Aneesa N Ali
Universal Gates - Aneesa N Ali
 
LOGICAL GATES mayank chauhan.pdf
LOGICAL GATES mayank chauhan.pdfLOGICAL GATES mayank chauhan.pdf
LOGICAL GATES mayank chauhan.pdf
 

KĂĽrzlich hochgeladen

Call Girl Nashik Saloni 7001305949 Independent Escort Service Nashik
Call Girl Nashik Saloni 7001305949 Independent Escort Service NashikCall Girl Nashik Saloni 7001305949 Independent Escort Service Nashik
Call Girl Nashik Saloni 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Book Paid Sonagachi Call Girls Kolkata đ– ‹ 8250192130 đ– ‹Low Budget Full Independ...
Book Paid Sonagachi Call Girls Kolkata đ– ‹ 8250192130 đ– ‹Low Budget Full Independ...Book Paid Sonagachi Call Girls Kolkata đ– ‹ 8250192130 đ– ‹Low Budget Full Independ...
Book Paid Sonagachi Call Girls Kolkata đ– ‹ 8250192130 đ– ‹Low Budget Full Independ...noor ahmed
 
↑Top Model (Kolkata) Call Girls Rajpur ⟟ 8250192130 ⟟ High Class Call Girl In...
↑Top Model (Kolkata) Call Girls Rajpur ⟟ 8250192130 ⟟ High Class Call Girl In...↑Top Model (Kolkata) Call Girls Rajpur ⟟ 8250192130 ⟟ High Class Call Girl In...
↑Top Model (Kolkata) Call Girls Rajpur ⟟ 8250192130 ⟟ High Class Call Girl In...noor ahmed
 
Call Girls Nashik Gayatri 7001305949 Independent Escort Service Nashik
Call Girls Nashik Gayatri 7001305949 Independent Escort Service NashikCall Girls Nashik Gayatri 7001305949 Independent Escort Service Nashik
Call Girls Nashik Gayatri 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call Girls In Goa 9316020077 Goa Call Girl By Indian Call Girls Goa
Call Girls In Goa  9316020077 Goa  Call Girl By Indian Call Girls GoaCall Girls In Goa  9316020077 Goa  Call Girl By Indian Call Girls Goa
Call Girls In Goa 9316020077 Goa Call Girl By Indian Call Girls Goasexy call girls service in goa
 
Russian Escorts Agency In Goa đź’š 9316020077 đź’š Russian Call Girl Goa
Russian Escorts Agency In Goa  đź’š 9316020077 đź’š Russian Call Girl GoaRussian Escorts Agency In Goa  đź’š 9316020077 đź’š Russian Call Girl Goa
Russian Escorts Agency In Goa đź’š 9316020077 đź’š Russian Call Girl Goasexy call girls service in goa
 
Karnal Call Girls 8860008073 Dyal Singh Colony Call Girls Service in Karnal E...
Karnal Call Girls 8860008073 Dyal Singh Colony Call Girls Service in Karnal E...Karnal Call Girls 8860008073 Dyal Singh Colony Call Girls Service in Karnal E...
Karnal Call Girls 8860008073 Dyal Singh Colony Call Girls Service in Karnal E...Apsara Of India
 
2k Shot Call girls Laxmi Nagar Delhi 9205541914
2k Shot Call girls Laxmi Nagar Delhi 92055419142k Shot Call girls Laxmi Nagar Delhi 9205541914
2k Shot Call girls Laxmi Nagar Delhi 9205541914Delhi Call girls
 
Dakshineswar Call Girls âś” 8005736733 âś” Hot Model With Sexy Bhabi Ready For Se...
Dakshineswar Call Girls âś” 8005736733 âś” Hot Model With Sexy Bhabi Ready For Se...Dakshineswar Call Girls âś” 8005736733 âś” Hot Model With Sexy Bhabi Ready For Se...
Dakshineswar Call Girls âś” 8005736733 âś” Hot Model With Sexy Bhabi Ready For Se...aamir
 
Call Girl Nagpur Roshni Call 7001035870 Meet With Nagpur Escorts
Call Girl Nagpur Roshni Call 7001035870 Meet With Nagpur EscortsCall Girl Nagpur Roshni Call 7001035870 Meet With Nagpur Escorts
Call Girl Nagpur Roshni Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Top Rated Kolkata Call Girls Khardah âźź 6297143586 âźź Call Me For Genuine Sex S...
Top Rated Kolkata Call Girls Khardah âźź 6297143586 âźź Call Me For Genuine Sex S...Top Rated Kolkata Call Girls Khardah âźź 6297143586 âźź Call Me For Genuine Sex S...
Top Rated Kolkata Call Girls Khardah âźź 6297143586 âźź Call Me For Genuine Sex S...ritikasharma
 
Call Girl Service Belur - 7001035870 with real photos and phone numbers
Call Girl Service Belur - 7001035870 with real photos and phone numbersCall Girl Service Belur - 7001035870 with real photos and phone numbers
Call Girl Service Belur - 7001035870 with real photos and phone numbersanamikaraghav4
 
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Call Girls in Barasat | 7001035870 At Low Cost Cash Payment Booking
Call Girls in Barasat | 7001035870 At Low Cost Cash Payment BookingCall Girls in Barasat | 7001035870 At Low Cost Cash Payment Booking
Call Girls in Barasat | 7001035870 At Low Cost Cash Payment Bookingnoor ahmed
 
Model Call Girls In Pazhavanthangal WhatsApp Booking 7427069034 call girl ser...
Model Call Girls In Pazhavanthangal WhatsApp Booking 7427069034 call girl ser...Model Call Girls In Pazhavanthangal WhatsApp Booking 7427069034 call girl ser...
Model Call Girls In Pazhavanthangal WhatsApp Booking 7427069034 call girl ser... Shivani Pandey
 
Science City Kolkata ( Call Girls ) Kolkata âś” 6297143586 âś” Hot Model With Sex...
Science City Kolkata ( Call Girls ) Kolkata âś” 6297143586 âś” Hot Model With Sex...Science City Kolkata ( Call Girls ) Kolkata âś” 6297143586 âś” Hot Model With Sex...
Science City Kolkata ( Call Girls ) Kolkata âś” 6297143586 âś” Hot Model With Sex...rahim quresi
 
đź‘™ Kolkata Call Girls Park Circus đź’«đź’«7001035870 Model escorts Service
đź‘™  Kolkata Call Girls Park Circus đź’«đź’«7001035870 Model escorts Serviceđź‘™  Kolkata Call Girls Park Circus đź’«đź’«7001035870 Model escorts Service
đź‘™ Kolkata Call Girls Park Circus đź’«đź’«7001035870 Model escorts Serviceanamikaraghav4
 
CHEAP Call Girls in Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in  Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in  Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

KĂĽrzlich hochgeladen (20)

Call Girl Nashik Saloni 7001305949 Independent Escort Service Nashik
Call Girl Nashik Saloni 7001305949 Independent Escort Service NashikCall Girl Nashik Saloni 7001305949 Independent Escort Service Nashik
Call Girl Nashik Saloni 7001305949 Independent Escort Service Nashik
 
Call Girls South Avenue Delhi WhatsApp Number 9711199171
Call Girls South Avenue Delhi WhatsApp Number 9711199171Call Girls South Avenue Delhi WhatsApp Number 9711199171
Call Girls South Avenue Delhi WhatsApp Number 9711199171
 
Book Paid Sonagachi Call Girls Kolkata đ– ‹ 8250192130 đ– ‹Low Budget Full Independ...
Book Paid Sonagachi Call Girls Kolkata đ– ‹ 8250192130 đ– ‹Low Budget Full Independ...Book Paid Sonagachi Call Girls Kolkata đ– ‹ 8250192130 đ– ‹Low Budget Full Independ...
Book Paid Sonagachi Call Girls Kolkata đ– ‹ 8250192130 đ– ‹Low Budget Full Independ...
 
↑Top Model (Kolkata) Call Girls Rajpur ⟟ 8250192130 ⟟ High Class Call Girl In...
↑Top Model (Kolkata) Call Girls Rajpur ⟟ 8250192130 ⟟ High Class Call Girl In...↑Top Model (Kolkata) Call Girls Rajpur ⟟ 8250192130 ⟟ High Class Call Girl In...
↑Top Model (Kolkata) Call Girls Rajpur ⟟ 8250192130 ⟟ High Class Call Girl In...
 
Call Girls Nashik Gayatri 7001305949 Independent Escort Service Nashik
Call Girls Nashik Gayatri 7001305949 Independent Escort Service NashikCall Girls Nashik Gayatri 7001305949 Independent Escort Service Nashik
Call Girls Nashik Gayatri 7001305949 Independent Escort Service Nashik
 
Call Girls In Goa 9316020077 Goa Call Girl By Indian Call Girls Goa
Call Girls In Goa  9316020077 Goa  Call Girl By Indian Call Girls GoaCall Girls In Goa  9316020077 Goa  Call Girl By Indian Call Girls Goa
Call Girls In Goa 9316020077 Goa Call Girl By Indian Call Girls Goa
 
Russian Escorts Agency In Goa đź’š 9316020077 đź’š Russian Call Girl Goa
Russian Escorts Agency In Goa  đź’š 9316020077 đź’š Russian Call Girl GoaRussian Escorts Agency In Goa  đź’š 9316020077 đź’š Russian Call Girl Goa
Russian Escorts Agency In Goa đź’š 9316020077 đź’š Russian Call Girl Goa
 
Karnal Call Girls 8860008073 Dyal Singh Colony Call Girls Service in Karnal E...
Karnal Call Girls 8860008073 Dyal Singh Colony Call Girls Service in Karnal E...Karnal Call Girls 8860008073 Dyal Singh Colony Call Girls Service in Karnal E...
Karnal Call Girls 8860008073 Dyal Singh Colony Call Girls Service in Karnal E...
 
2k Shot Call girls Laxmi Nagar Delhi 9205541914
2k Shot Call girls Laxmi Nagar Delhi 92055419142k Shot Call girls Laxmi Nagar Delhi 9205541914
2k Shot Call girls Laxmi Nagar Delhi 9205541914
 
Dakshineswar Call Girls âś” 8005736733 âś” Hot Model With Sexy Bhabi Ready For Se...
Dakshineswar Call Girls âś” 8005736733 âś” Hot Model With Sexy Bhabi Ready For Se...Dakshineswar Call Girls âś” 8005736733 âś” Hot Model With Sexy Bhabi Ready For Se...
Dakshineswar Call Girls âś” 8005736733 âś” Hot Model With Sexy Bhabi Ready For Se...
 
Goa Call Girls 9316020077 Call Girls In Goa By Russian Call Girl in goa
Goa Call Girls 9316020077 Call Girls  In Goa By Russian Call Girl in goaGoa Call Girls 9316020077 Call Girls  In Goa By Russian Call Girl in goa
Goa Call Girls 9316020077 Call Girls In Goa By Russian Call Girl in goa
 
Call Girl Nagpur Roshni Call 7001035870 Meet With Nagpur Escorts
Call Girl Nagpur Roshni Call 7001035870 Meet With Nagpur EscortsCall Girl Nagpur Roshni Call 7001035870 Meet With Nagpur Escorts
Call Girl Nagpur Roshni Call 7001035870 Meet With Nagpur Escorts
 
Top Rated Kolkata Call Girls Khardah âźź 6297143586 âźź Call Me For Genuine Sex S...
Top Rated Kolkata Call Girls Khardah âźź 6297143586 âźź Call Me For Genuine Sex S...Top Rated Kolkata Call Girls Khardah âźź 6297143586 âźź Call Me For Genuine Sex S...
Top Rated Kolkata Call Girls Khardah âźź 6297143586 âźź Call Me For Genuine Sex S...
 
Call Girl Service Belur - 7001035870 with real photos and phone numbers
Call Girl Service Belur - 7001035870 with real photos and phone numbersCall Girl Service Belur - 7001035870 with real photos and phone numbers
Call Girl Service Belur - 7001035870 with real photos and phone numbers
 
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
 
Call Girls in Barasat | 7001035870 At Low Cost Cash Payment Booking
Call Girls in Barasat | 7001035870 At Low Cost Cash Payment BookingCall Girls in Barasat | 7001035870 At Low Cost Cash Payment Booking
Call Girls in Barasat | 7001035870 At Low Cost Cash Payment Booking
 
Model Call Girls In Pazhavanthangal WhatsApp Booking 7427069034 call girl ser...
Model Call Girls In Pazhavanthangal WhatsApp Booking 7427069034 call girl ser...Model Call Girls In Pazhavanthangal WhatsApp Booking 7427069034 call girl ser...
Model Call Girls In Pazhavanthangal WhatsApp Booking 7427069034 call girl ser...
 
Science City Kolkata ( Call Girls ) Kolkata âś” 6297143586 âś” Hot Model With Sex...
Science City Kolkata ( Call Girls ) Kolkata âś” 6297143586 âś” Hot Model With Sex...Science City Kolkata ( Call Girls ) Kolkata âś” 6297143586 âś” Hot Model With Sex...
Science City Kolkata ( Call Girls ) Kolkata âś” 6297143586 âś” Hot Model With Sex...
 
đź‘™ Kolkata Call Girls Park Circus đź’«đź’«7001035870 Model escorts Service
đź‘™  Kolkata Call Girls Park Circus đź’«đź’«7001035870 Model escorts Serviceđź‘™  Kolkata Call Girls Park Circus đź’«đź’«7001035870 Model escorts Service
đź‘™ Kolkata Call Girls Park Circus đź’«đź’«7001035870 Model escorts Service
 
CHEAP Call Girls in Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in  Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in  Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Malviya Nagar, (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 

UNIVERSAL PROPERTY.pptx

  • 2. UNIVERSAL GATE • A universal gate is a logic gate which can implement any Boolean function without the need to use any other type of logic gate. The NOR gate and NAND gate are universal gates. This means that you can create any logical Boolean expression using only NOR gates or only NAND gates. • In practice, this is advantageous since NOR and NAND gates are economical and easier to fabricate than other logic gates. So much so that an AND gate is typically implemented as a NAND gate followed by an inverter (not the other way around)! Similarly, an OR gate is typically realised as a NOR gate followed by an inverter.
  • 3. NAND Gate As NOT Gate • The below diagram is of a two-input NAND gate. The first part is an AND gate and the second part is a dot after it represents a NOT gate. • During the operation of the NAND gate, the inputs are first going through AND gate and after that, the output gets reversed, and we get the final output. Now we will look at the truth table of NAND gate. • We will consider the truth table of the above NAND gate i.e. a two- input NAND gate. The two inputs are A and B.
  • 4. Now we will see how this gate can be used to make other gates. DESIRED GATE NAND CONSTRUCTION
  • 5. NAND GATE AS AND GATE • An AND gate is made by following a NAND gate with NOT gate as shown below. This is given a NOT NAND i.e, AND DESIRED GATE NAND CONSTRUCTION
  • 6. NAND GATE AS OR GATE • The truth of nand gate is examined , it can be seen that if any of the inputs are 0 the output is 1. however to be an OR gate , if any input is 1, the output should be 1. therefore, if the inputs are inverted, any high input will trigger a high output. DESIRED GATE NAND CONSTRUCTION
  • 7. NAND AS NOR GATE • A NOR Gate is simply an OR gate with an converted input. DESIRED GATE NAND CONSTRUCTION
  • 8. NAND AS X-OR GATE • An XOR gate is made by connecting four NAND gates as shown below. This construction entails a propagation delay three times that of a single NAND gate. , noting from de Morgan's Law that a NAND gate is an inverted-input OR gate. This construction uses five gates instead of four. • Boolean Expression Y = A.B' + 'A.B = (A ⊕ B) • "If inputs having an odd number of ones, then Y is true" DESIRED GATE NAND CONSTRUCTION
  • 9. NAND AS X-NOR GATE • 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. DESIRED GATE NAND CONSTRUCTION
  • 10. UNIVERSAL PROPERTY OF NOR GATE NOR AS NOT GATE • As a NOR gate is equivalent to an OR gate leading to NOT gate, joining the inputs makes the output of the "OR" part of the NOR gate the same as the input, eliminating it from consideration and leaving only the NOT part. Desired NOT Gate. NOR Construction. Q = NOT( A ) = A NOR A. DESIRED GATE NOR CONSTRUCTION
  • 11. NOR GATE AS OR GATE • The OR gate is simply a NOR Gate followed by NOT gate
  • 12.
  • 13. DEFN.. • The combinational logic circuits are the circuits that contain different types of logic gates. Simply, a circuit in which different types of logic gates are combined is known as a combinational logic circuit. • The output of the combinational circuit is determined from the present combination of inputs, regardless of the previous input. The input variables, logic gates, and output variables are the basic components of the combinational logic circuit. There are different types of combinational logic circuits, such as Adder, Subtractor, Decoder, Encoder, Multiplexer, and De-multiplexer.
  • 14. There are the following characteristics of the combinational logic circuit: At any instant of time, the output of the combinational circuits depends only on the present input terminals. The combinational circuit doesn't have any backup or previous memory. The present state of the circuit is not affected by the previous state of the input. The n number of inputs and m number of outputs are possible in combinational logic circuits. The 'n' input variable comes from the external source while the 'm' output variable goes to the external destination. In many applications, the source or destinations are storage registers.
  • 15. COMBINATIONAL CIRCUITS • HALF ADDER The half adder is a basic building block having two inputs and two outputs. The adder is used to perform OR operation of two single bit binary numbers. The carry and sum are two output states of the half adder. • Full Adder The half adder is used to add only two numbers. To overcome this problem, the full adder was developed. The full adder is used to add three 1-bit binary numbers A, B, and carry C. The full adder has three input states and two output states i.e., sum and carry.
  • 16. COMBINATIONAL CIRCUITS • Half Subtractors The half subtractor is also a building block of subtracting two binary numbers. It has two inputs and two outputs. This circuit is used to subtract two single bit binary numbers A and B. The 'diff' and 'borrow' are the two output state of the half adder. • Full Subtractors The Half Subtractor is used to subtract only two numbers. To overcome this problem, full subtractor was designed. The full subtractor is used to subtract three 1-bit numbers A, B, and C, which are minuend, subtrahend, and borrow, respectively. The full subtractor has three input states and two output states i.e., diff and borrow.
  • 17. COMBINATIONAL CIRCUITS • Multiplexers The multiplexer is a combinational circuit that has n-data inputs and a single output. It is also known as the data selector which selects one input from the inputs and routes it to the output. With the help of the selected inputs, one input line from the n-input lines is selected. The enable input is denoted by E, which is used in cascade. • De-multiplexers A De-multiplexer performs the reverse operation of a multiplexer. The de- multiplexer has only one input, which is distributed over several outputs. One output line is selected at a time by selecting lines. The input is transmitted to the selected output line.
  • 18. COMBINATIONAL CIRCUITS • Decoder • A decoder is a combinational circuit having n inputs and to a maximum of m = 2n outputs. The decoder is the same as the de-multiplexer. The only difference between de-multiplexer and decoder is that in the decoder, there is no data input. The decoder performs an operation that is completely opposite of an encoder. • Encoder • The encoder is used to perform the reverse operation of the decoder. An encoder having n number of inputs and m number of outputs is used to produce m-bit binary code which is related to the digital input number. The encoder takes the digital word and converts it into another digital word.
  • 19. HALF-ADDER • The Half-Adder is a basic building block of adding two numbers as two inputs and produce out two outputs. The adder is used to perform OR operation of two single bit binary numbers. The augent and addent bits are two input states, and 'carry' and 'sum 'are two output states of the half adder
  • 20. In the above table, 'A' and' B' are the input states, and 'sum' and 'carry' are the output states. The carry output is 0 in case where both the inputs are not 1. The least significant bit of the sum is defined by the 'sum' bit. The SOP form of the sum and carry are as follows: Sum = x'y+xy' Carry = xy
  • 22. FULL ADDER • The half adder is used to add only two numbers. To overcome this problem, the full adder was developed. The full adder is used to add three 1-bit binary numbers A, B, and carry C. The full adder has three input states and two output states i.e., sum and carry.
  • 23. In the above table, 'A' and' B' are the input variables. These variables represent the two significant bits which are going to be added 'Cin' is the third input which represents the carry. From the previous lower significant position, the carry bit is fetched. The 'Sum' and 'Carry' are the output variables that define the output values. The eight rows under the input variable designate all possible combinations of 0 and 1 that can occur in these variables. Sum = x' y' z+x' yz+xy' z'+xyz Carry = xy+xz+yz
  • 24. Sum = x' y' z+x' yz+xy' z'+xyz Carry = xy+xz+yz

Hinweis der Redaktion

  1. You can use this slide as your opening or closing slide. Should you choose to use it as a closing, make sure you review the main points of your presentation. One creative way to do that is by adding animations to the various graphics on a slide. This slide has 4 different graphics, and, when you view the slideshow, you will see that you can click to reveal the next graphic. Similarly, as you review the main topics in your presentation, you may want each point to show up when you are addressing that topic. Add animation to images and graphics: Select your image or graphic. Click on the Animations tab. Choose from the options. The animation for this slide is “Split”. The drop-down menu in the Animation section gives even more animations you can use. If you have multiple graphics or images, you will see a number appear next to it that notes the order of the animations. Note: You will want to choose the animations carefully. You do not want to make your audience dizzy from your presentation.