SlideShare a Scribd company logo
1 of 36
DIGITAL ELECTRONICS
CHAPTER 1
DEE 204
DIGITAL ELECTRONICS
• Information representation
Sign and magnitude.
Complement number systems, addition, subtraction,
division, multiplication of binary numbers.
Character coding ASCII, hexadecimal number systems.
Hexadecimal.
• Digital fundamentals
Difference between analog and digital systems.
Logic levels and families.
Logic values, truth tables and logical operations.
Boolean algebra.
De Morgan’s Theorem
DIGITAL ELECTRONICS
• Function of combination logic
Conversion of BCD to 7 segment decoder.
Multiplexer, tri-state output, fan out, address, half
adder, full adder, comparator.
Logic minimisation and Karnaugh maps.
• Function of sequential logic
Sequential logic.
Latches gated and edge-triggered S-R latch.
Edge-trigged D-type latches.
Toggle flip-flop.
Asynchronous counters, registers.
State machines. 
DIGITAL ELECTRONICS
• Memory organisation
Principles of storage, RAM, ROM, PROM, EPROM.
Dynamic theory, logic diagram of a single bit within a
RAM and its operation.
Coincident address selection.
Block diagram of a single bit within a RAM and its
operation.
• Conversation between analoque and systems
function of A-D and D-A Converters.
Principle of operation of a D-A converter.
Principle of operation of a single ramp.
A continuously balanced and successive
approximation A-D converter.
INFORMATION REPRESENTATION
Information representation
- Number systems actually represent data
before they are processed by any digital
system
- There are various number systems but all
number systems are related to a
common parameter
INFORMATION REPRESENTATION
- Different characteristics define different
number systems including
 number of independent digits
 place values of different digits
 maximum number able to be written in the
number system
• The most fundamental characteristic is the
number of independent digits or symbols used
in the number system known as radix or base
INFORMATION REPRESENTATION
• the most familiar number system is the decimal
system which has 10 independent digits or a
radix of 10
 the decimal number consists of 0,1,2,3,4,5,6,7,8,9
• the binary number system has only 2
independent digits, i.e. 0,1
• the octal and hexadecimal number system has
8 and 16 independent digits respectively
 octal: 0,1,2,3,4,5,6,7
 hexadecimal: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F
INFORMATION REPRESENTATION
• the place value of different digits in the
integer are given as rn
, where r is the radix of
the system and represents the maximum
number that can be written with n digits:
24
23
22
21
20
=16 =8 =4 =2 =1
1 0 1 1 0
= 101102 = 2210
INFORMATION REPRESENTATION
Sign/magnitude notation 
• is the simplest and one of the most obvious
methods of encoding positive and negative
numbers.
– Assign the leftmost (most significant) bit to be
the sign bit. If the sign bit is 0, this means the 
number is positive. If the sign bit is 1, then the
number is negative. The remaining m-1 bits are
used to represent the magnitude of the binary
number in the unsigned binary notation.
INFORMATION REPRESENTATION
Sign/magnitude notation
INFORMATION REPRESENTATION
Sign/magnitude notation
Example:
Add 00101 + 00110 (+5 and +6)
00101
+ 00110
-------
01011 = +11 (decimal)
INFORMATION REPRESENTATION
Sign/magnitude notation
Example:
Add +7 and –2 : +7 = 00111
+2 = 00010, so flip the bits: 11101 and add 1: 11110
00111
+ 11110
-------
100101 Discard the extra carry to give 00101 = +5
INFORMATION REPRESENTATION
Sign/magnitude notation
Example:
Add –5 + -4
5 = 00101. Flip the bits to get 11010, and add 1 to get 11011
4 = 00100. Flip the bits to get 11011, and add 1 to get 11100
11011
+ 11100
----------
110111 = 10111 when we discard the carry
10111 is negative, as indicated by the leading 1.
Flip the bits to get 01000. Add 1 to get 01001. The result is
9. Since it is negative, we really have –9.
INFORMATION REPRESENTATION
• 1's Complement Arithmetic
The Formula
N *= (2n
-1) - N
where: n is the number of bits per word
• N is a positive integer
• N* is -N in 1's complement notation
• For example with an 8-bit word and N = 6, we
have:
N* = (28
-1) - 6 = 255 - 6 = 249 = 111110012
INFORMATION REPRESENTATION
• In Binary
An alternate way to find the 1's complement is to simply
take the bit by bit complement of the binary number.
For example: N = +6 = 000001102
N *= -6 = 111110012
Conversely, given the 1's complement we can find the
magnitude of the number by taking it's 1's complement.
The largest number that can be represented in 8-bit 1's
complement is 011111112 = 127 = $7F. The smallest is
100000002 = -127. Note that the values 000000002 and
111111112 both represent zero.
INFORMATION REPRESENTATION
• Addition
End-around Carry.
When the addition of two values results in a
carry, the carry bit is added to the sum in the
rightmost position. There is no overflow as
long as the magnitude of the result is not
greater than 2n
-1.
INFORMATION REPRESENTATION
• 2's Complement Arithmetic
The Formula
N ** = 2n
- N
where: n is the number of bits per word
• N is a positive integer
• N** is -N in 2's complement notation
• For example with an 8-bit word and N = 6, we
have:
N** = 28
- 6 = 256 - 6 = 250 = 111110102
INFORMATION REPRESENTATION
• In Binary
An alternate way to find the 2's complement is to
start at the right and complement each bit to the left
of the first "1".
For example: N = +6 = 000001102
N** = -6 = 111110102
Conversely, given the 2's complement we can find the
magnitude of the number by taking it's 2's complement.
The largest number that can be represented in 8-bit 2s
complement is 011111112 = 127. The smallest is
100000002 = -128.
INFORMATION REPRESENTATION
• Addition
When the addition of two values results in a
carry, the carry bit is ignored. There is no
overflow as long as the magnitude is not
greater than 2n
-1 nor less than -2n
.
INFORMATION REPRESENTATION
Addition
• Adding 1+1 = 1, with carry of ‘1’ to the left bit
INFORMATION REPRESENTATION
Addition
INFORMATION REPRESENTATION
Subtraction
• Subtracting 0 – 1 = 1, with borrow of ‘1’ from
the left bit
INFORMATION REPRESENTATION
Subtraction
INFORMATION REPRESENTATION
Addition/Subtraction
1101
+ 101
______
1001
+ 111
______
11110
- 10110
________
1111101
- 1101011
_________
INFORMATION REPRESENTATION
Division/Multiplication
11
X 11
11
11
1001
111
X 101
111
000
+ 111
100011
INFORMATION REPRESENTATION
Division/Multiplication
10
000
11
11011
11
000
010
010
10
11010
2
0
6
63
3
0
6
62
INFORMATION REPRESENTATION
Division/Multiplication
* Division or multiplication of binary numbers
could also be done by converting the value
into decimal, divided or multiplied, and then
converted back into binary
INFORMATION REPRESENTATION
• Binary/octal/hexadecimal – decimal conversion
Example:
(1101)2 in decimal
1X23
+ 1X22
+ 0X21
+ 1X20
= 8 + 4 + 0 + 1 = 13
(234)8 in decimal
2X82
+ 3X81
+ 4X80
= 2X64 + 3X8 + 4X1
= 128 + 24 + 4 = 156
INFORMATION REPRESENTATION
• Binary/octal/hexadecimal – decimal
conversion
Example:
(5B1)16 in decimal
5X162
+ 11X161
+ 1X160
= 5X256 + 11X16 + 1X1
= 1280 + 176 + 1 = 1457
INFORMATION REPRESENTATION
Conversion binary-octal-hexadecimal-decimal
Example:
Decimal – binary conversion of (13)10
Solution:
In this case integer = 13
INFORMATION REPRESENTATION
Solution:
For the integer part = 13
Thus, binary equivalent of 13 = 1101
INFORMATION REPRESENTATION
• Example:
Decimal – octal conversion of (73)10
Solution:
integer = 73
INFORMATION REPRESENTATION
• Solution
For the integer part = 73
Thus, octal equivalent of 73 = 111
INFORMATION REPRESENTATION
• Hexadecimal-octal-binary conversion
Example:
(1101111001101001)2 in octal
(1101111001101001)2 = 1571518
1 101 111 001 101 0012
001 101 111 001 101 001
1 5 7 1 5 1
INFORMATION REPRESENTATION
• Hexadecimal-octal-binary conversion
Example:
(1101111001101001)2 in hexadecimal
(1101111001101001)2 = DE6916
1101 1110 0110 10012
1101 1110 0110 1001
13 14 6 9
D E 6 9
INFORMATION REPRESENTATION
• ASCII code
- stands for American Standard Code for
Information Interchange
- a seven bit code based on the English
alphabet used to represent alphanumeric data
in computers or communication equipment
- able to represent 128 characters: A to Z, a to
z, 0 to 9, a few mathematical symbols,
punctuation marks and space character

More Related Content

What's hot

What's hot (20)

DLD Presentation By Team Reboot,Rafin Rayan,EUB
DLD Presentation By Team Reboot,Rafin Rayan,EUBDLD Presentation By Team Reboot,Rafin Rayan,EUB
DLD Presentation By Team Reboot,Rafin Rayan,EUB
 
2-bit comparator
2-bit comparator2-bit comparator
2-bit comparator
 
Introduction to digital logic
Introduction to digital logicIntroduction to digital logic
Introduction to digital logic
 
Digital Logic & Design (DLD) presentation
Digital Logic & Design (DLD) presentationDigital Logic & Design (DLD) presentation
Digital Logic & Design (DLD) presentation
 
Digital 4-bit Comprator
Digital 4-bit CompratorDigital 4-bit Comprator
Digital 4-bit Comprator
 
Digital Logic circuit
Digital Logic circuitDigital Logic circuit
Digital Logic circuit
 
Digital 1 8
Digital 1 8Digital 1 8
Digital 1 8
 
IS 151 Lecture 8
IS 151 Lecture 8IS 151 Lecture 8
IS 151 Lecture 8
 
Digital Logic Circuits
Digital Logic CircuitsDigital Logic Circuits
Digital Logic Circuits
 
EE8351 DLC
EE8351 DLCEE8351 DLC
EE8351 DLC
 
DEL-244Chep i
DEL-244Chep iDEL-244Chep i
DEL-244Chep i
 
Number system logic gates
Number system logic gatesNumber system logic gates
Number system logic gates
 
Chapter 01 Basic Principles of Digital Systems
Chapter 01 Basic Principles of Digital SystemsChapter 01 Basic Principles of Digital Systems
Chapter 01 Basic Principles of Digital Systems
 
Chapter 5: Cominational Logic with MSI and LSI
Chapter 5: Cominational Logic with MSI and LSIChapter 5: Cominational Logic with MSI and LSI
Chapter 5: Cominational Logic with MSI and LSI
 
Combinational circuits
Combinational circuits Combinational circuits
Combinational circuits
 
Digital logic circuit
Digital logic circuitDigital logic circuit
Digital logic circuit
 
Ch1 2
Ch1 2Ch1 2
Ch1 2
 
Chapter 2 ee202 boolean part a
Chapter 2 ee202 boolean part aChapter 2 ee202 boolean part a
Chapter 2 ee202 boolean part a
 
Chapter 4: Combinational Logic
Chapter 4: Combinational LogicChapter 4: Combinational Logic
Chapter 4: Combinational Logic
 
Decppt
DecpptDecppt
Decppt
 

Viewers also liked

Digital systems computer_electronics
Digital systems  computer_electronicsDigital systems  computer_electronics
Digital systems computer_electronicsNeeharika Kasarla
 
DIGITAL ELECTRONICS- Number System
DIGITAL ELECTRONICS- Number SystemDIGITAL ELECTRONICS- Number System
DIGITAL ELECTRONICS- Number SystemTrinity Dwarka
 
Unit v computer, number system
Unit  v computer, number systemUnit  v computer, number system
Unit v computer, number systemindra Kishor
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMZaheer Abbasi
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number SystemJames Hamilton
 

Viewers also liked (8)

Number System
Number SystemNumber System
Number System
 
Digital systems computer_electronics
Digital systems  computer_electronicsDigital systems  computer_electronics
Digital systems computer_electronics
 
DIGITAL ELECTRONICS- Number System
DIGITAL ELECTRONICS- Number SystemDIGITAL ELECTRONICS- Number System
DIGITAL ELECTRONICS- Number System
 
Unit v computer, number system
Unit  v computer, number systemUnit  v computer, number system
Unit v computer, number system
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEM
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number System
 
Number system
Number systemNumber system
Number system
 
Number System
Number SystemNumber System
Number System
 

Similar to Digital design chap 1

Similar to Digital design chap 1 (20)

Chapter 2.1 introduction to number system
Chapter 2.1 introduction to number systemChapter 2.1 introduction to number system
Chapter 2.1 introduction to number system
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
 
L 2.10
L 2.10L 2.10
L 2.10
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
Number system
Number systemNumber system
Number system
 
Alu1
Alu1Alu1
Alu1
 
Digital Logic
Digital LogicDigital Logic
Digital Logic
 
Cse115 lecture01numbersystems
Cse115 lecture01numbersystemsCse115 lecture01numbersystems
Cse115 lecture01numbersystems
 
Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
 
Number system
Number systemNumber system
Number system
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 
Okkkkk
OkkkkkOkkkkk
Okkkkk
 
Number system conversion
Number system conversionNumber system conversion
Number system conversion
 
Digital Logic Design.pptx
Digital Logic Design.pptxDigital Logic Design.pptx
Digital Logic Design.pptx
 
Digital Electronics – Unit I.pdf
Digital Electronics – Unit I.pdfDigital Electronics – Unit I.pdf
Digital Electronics – Unit I.pdf
 
Number system
Number systemNumber system
Number system
 
21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx
 
data representation
 data representation data representation
data representation
 
DLD_Lecture_notes2.ppt
DLD_Lecture_notes2.pptDLD_Lecture_notes2.ppt
DLD_Lecture_notes2.ppt
 
digital-180612132737.pdf
digital-180612132737.pdfdigital-180612132737.pdf
digital-180612132737.pdf
 

More from Mohammad Bappy

More from Mohammad Bappy (15)

Multiplexing
MultiplexingMultiplexing
Multiplexing
 
Error control coding
Error control codingError control coding
Error control coding
 
Eeng 3810 chapter 4
Eeng 3810 chapter 4Eeng 3810 chapter 4
Eeng 3810 chapter 4
 
Digital communication methods
Digital communication methodsDigital communication methods
Digital communication methods
 
Broadcasting and video systems
Broadcasting and video systemsBroadcasting and video systems
Broadcasting and video systems
 
Antenna and propagation
Antenna and propagationAntenna and propagation
Antenna and propagation
 
311 pulse modulation
311 pulse modulation311 pulse modulation
311 pulse modulation
 
311 linear modulation
311 linear modulation311 linear modulation
311 linear modulation
 
311 introduction to communication system
311 introduction to communication system311 introduction to communication system
311 introduction to communication system
 
311 communication system concepts
311 communication system concepts311 communication system concepts
311 communication system concepts
 
311 angle modulation
311 angle modulation311 angle modulation
311 angle modulation
 
Digital design chap 5
Digital design   chap 5Digital design   chap 5
Digital design chap 5
 
Digital e chap 4
Digital e   chap 4Digital e   chap 4
Digital e chap 4
 
Digital design chap 3
Digital design   chap 3Digital design   chap 3
Digital design chap 3
 
Digital design chap 6
Digital design  chap 6Digital design  chap 6
Digital design chap 6
 

Recently uploaded

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 

Recently uploaded (20)

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 

Digital design chap 1