SlideShare une entreprise Scribd logo
1  sur  18
Télécharger pour lire hors ligne
Carc 03.04
alessandro.bogliolo@uniurb.it
03. Logic Networks
03.04. Gate-Level Design
• Design metrics
• Design styles
• Examples
• Adders
Computer Architecture
alessandro.bogliolo@uniurb.it
Carc 03.04
alessandro.bogliolo@uniurb.it
Design metrics
• Area (A)
• Number of gates
• Number of 2-input NANDs
• Number of gates inputs
• Performance
• Propagation time (delay): pin-to-pin, overall (Tp)
• Contamination time: pin-to-pin, overall (Tc)
• Throughput (rate)
• Power
• Static (W)
• Dynamic (W)
Carc 03.04
alessandro.bogliolo@uniurb.it
Prop. and Cont. Time (ex1)
Carc 03.04
alessandro.bogliolo@uniurb.it
Prop. and Cont. Time (ex2)
Carc 03.04
alessandro.bogliolo@uniurb.it
Prop. and Cont. Time (ex3)
Carc 03.04
alessandro.bogliolo@uniurb.it
Prop. and Cont. Time (ex4)
Carc 03.04
alessandro.bogliolo@uniurb.it
Design approaches
• Logic synthesis:
• General
• Inefficient
• Non-scalable
• Example: Boolean functions of a few variables
• Top-down problem partitioning:
• Application-specific
• Modular
• Scalable
• Example: Arithmetic operators
Carc 03.04
alessandro.bogliolo@uniurb.it
T-D Example: Ripple-carry adder
• Functional specification: S=A+B
Carc 03.04
alessandro.bogliolo@uniurb.it
T-D Example: Full adder (1)
• Functional specification:
Cin A B S Cout
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1
CinABBCinAABCinBACinS  ''''''
)''()''(' ABBACinABBACinS 
BACinBACinBACinS  )'()('
Carc 03.04
alessandro.bogliolo@uniurb.it
T-D Example: Full adder (2)
• Functional specification:
Cin A B S Cout
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1
CinABCinABBCinAABCinCout  '''
)(' BACinABCinCout 
)(' ABBACinABCinCout 
)( BACinABCout 
Carc 03.04
alessandro.bogliolo@uniurb.it
T-D Example: Full adder (3)
• Putting it all together:
)( BACinABCout 
)( BACinS 
)( ABBACinABCout 
)( BACinABCout 
)'))'(()'(( BACinABCout 
Carc 03.04
alessandro.bogliolo@uniurb.it
Adders
1. Ripple-Carry Adder (RCA)
2. Synchronous RCA
3. Pipelined RCA
4. Bit-serial Adder
5. Carry-Lookhaead Adder
Carc 03.04
alessandro.bogliolo@uniurb.it
Ripple-carry adder (RCAn)
A(RCAn) = n A(FA) = O(n)
Tp(RCAn) = n Tp(FA) = O(n)
Tc(RCAn) = Tc(FA) = O(1)
Rate(RCAn) < 1/Tp(RCAn) = O(1/n)
Carc 03.04
alessandro.bogliolo@uniurb.it
Synchronous RCAn (SRCAn)
A(SincRCAn) = nA(FA) + 2n(n-1)A(FF) = O(n2)
Tp(SincRCAn) = nTclk > nTp(FA) = O(n)
Tc(SincRCAn) = nTclk > nTp(FA) = O(n)
Rate(SincRCAn) = 1/(nTclk) = O(1/n)
Carc 03.04
alessandro.bogliolo@uniurb.it
Pipelined RCAn (PRCAn)
A(PRCAn) = nA(FA) + 2n(n-1)A(FF) = O(n2)
Tp(PRCAn) = nTclk > nTp(FA) = O(n)
Tc(PRCAn) = nTclk > nTp(FA) = O(n)
Rate(PRCAn) = 1/Tclk = O(1)
Carc 03.04
alessandro.bogliolo@uniurb.it
Bit-serial adder (BSAn)
A(BSAn) = A(FA) + A(FF) = O(1)
Tp(BSAn) = nTclk > nTp(FA) = O(n)
Tc(BSAn) = Tclk > Tp(FA) = O(1)
Rate(BSAn) = 1/(nTclk) = O(1/n)
Carc 03.04
alessandro.bogliolo@uniurb.it
Carry Lookahead Adder (CLAn)
Observations:
ci = ai*bi + (ai+bi)ci-1 = gi + pi * ci-1
The first term generates the carry out (generate gi = ai*bi)
The second term propagates the carry (propagate pi = ai+bi)
Implementation:
ci = gi + pi (gi-1+pi-1 (gi-2+pi-2( ... (g0+p0*Cin)...)))
ci = gi + pigi-1+pipi-1gi-2+ pipi-1pi-2gi-3 + ... + pipi-1pi-2 ...p0Cin
(2)
(3)
(1)
Carc 03.04
alessandro.bogliolo@uniurb.it
Carry Lookahead Adder (CLAn)
Unit delay model
A(CLAn) = A(FA0)+…+A(FAn-1) = A(FA0)+…+O(n2) = O(n3)
Tp(CLAn) = Tp(FA) = O(1)
Tc(CLAn) = Tc(FA0) = O(1)
Rate(CLAn) > 1/Tp(CLAn) = O(1)
Gate delay proportional to the number of inputs
A(CLAn) = A(FA0)+…+A(FAn-1) = A(FA0)+…+O(n2) = O(n3)
Tp(CLAn) = Tp(FAn-1) = O(n)
Tc(CLAn) = Tc(FA0) = O(1)
Rate(CLAn) > 1/Tp(CLAn) = O(1/n)
Actual
A(CLAn) = O(n3)
O(1) < Tp(CLAn) < O(n)
Tc(CLAn) = O(1)
O(1/n) < Rate(CLAn) < O(1)

Contenu connexe

Tendances

Presentaciometro1
Presentaciometro1Presentaciometro1
Presentaciometro1
Brian Cohen
 
Lecture 10 11-signal_flow_graphs
Lecture 10 11-signal_flow_graphsLecture 10 11-signal_flow_graphs
Lecture 10 11-signal_flow_graphs
Saifullah Memon
 
Inside LoLA - Experiences from building a state space tool for place transiti...
Inside LoLA - Experiences from building a state space tool for place transiti...Inside LoLA - Experiences from building a state space tool for place transiti...
Inside LoLA - Experiences from building a state space tool for place transiti...
Universität Rostock
 
Super COMPUTING Journal
Super COMPUTING JournalSuper COMPUTING Journal
Super COMPUTING Journal
Pandey_G
 

Tendances (20)

Presentaciometro1
Presentaciometro1Presentaciometro1
Presentaciometro1
 
Guided Wave Propagation Simulation by ANSYS
Guided Wave Propagation Simulation by ANSYS Guided Wave Propagation Simulation by ANSYS
Guided Wave Propagation Simulation by ANSYS
 
Vlsi presentation final
Vlsi presentation finalVlsi presentation final
Vlsi presentation final
 
Ford Fulkerson Algorithm
Ford Fulkerson AlgorithmFord Fulkerson Algorithm
Ford Fulkerson Algorithm
 
Control and Guidance law for Guided Bomb
Control and Guidance law for Guided BombControl and Guidance law for Guided Bomb
Control and Guidance law for Guided Bomb
 
Csl8 2 f15
Csl8 2 f15Csl8 2 f15
Csl8 2 f15
 
Lecture 10 11-signal_flow_graphs
Lecture 10 11-signal_flow_graphsLecture 10 11-signal_flow_graphs
Lecture 10 11-signal_flow_graphs
 
Spark meets Telemetry
Spark meets TelemetrySpark meets Telemetry
Spark meets Telemetry
 
Signal Flow Graph Introduction
Signal Flow Graph IntroductionSignal Flow Graph Introduction
Signal Flow Graph Introduction
 
Real-Time Top-R Topic Detection on Twitter with Topic Hijack Filtering
Real-Time Top-R Topic Detection on Twitter with Topic Hijack FilteringReal-Time Top-R Topic Detection on Twitter with Topic Hijack Filtering
Real-Time Top-R Topic Detection on Twitter with Topic Hijack Filtering
 
3.5 equivalence of pushdown automata and cfl
3.5 equivalence of pushdown automata and cfl3.5 equivalence of pushdown automata and cfl
3.5 equivalence of pushdown automata and cfl
 
Fast and Scalable NUMA-based Thread Parallel Breadth-first Search
Fast and Scalable NUMA-based Thread Parallel Breadth-first SearchFast and Scalable NUMA-based Thread Parallel Breadth-first Search
Fast and Scalable NUMA-based Thread Parallel Breadth-first Search
 
Inside LoLA - Experiences from building a state space tool for place transiti...
Inside LoLA - Experiences from building a state space tool for place transiti...Inside LoLA - Experiences from building a state space tool for place transiti...
Inside LoLA - Experiences from building a state space tool for place transiti...
 
C-SAW: A Framework for Graph Sampling and Random Walk on GPUs
C-SAW: A Framework for Graph Sampling and Random Walk on GPUsC-SAW: A Framework for Graph Sampling and Random Walk on GPUs
C-SAW: A Framework for Graph Sampling and Random Walk on GPUs
 
Super COMPUTING Journal
Super COMPUTING JournalSuper COMPUTING Journal
Super COMPUTING Journal
 
Cloud PARTE: Elastic Complex Event Processing based on Mobile Actors
Cloud PARTE: Elastic Complex Event Processing based on Mobile ActorsCloud PARTE: Elastic Complex Event Processing based on Mobile Actors
Cloud PARTE: Elastic Complex Event Processing based on Mobile Actors
 
QR Factorizations and SVDs for Tall-and-skinny Matrices in MapReduce Architec...
QR Factorizations and SVDs for Tall-and-skinny Matrices in MapReduce Architec...QR Factorizations and SVDs for Tall-and-skinny Matrices in MapReduce Architec...
QR Factorizations and SVDs for Tall-and-skinny Matrices in MapReduce Architec...
 
Prediction of the Propeller Performance at Different Reynolds Number Regimes ...
Prediction of the Propeller Performance at Different Reynolds Number Regimes ...Prediction of the Propeller Performance at Different Reynolds Number Regimes ...
Prediction of the Propeller Performance at Different Reynolds Number Regimes ...
 
Spaa
SpaaSpaa
Spaa
 
Parallel Algorithms: Sort & Merge, Image Processing, Fault Tolerance
Parallel Algorithms: Sort & Merge, Image Processing, Fault ToleranceParallel Algorithms: Sort & Merge, Image Processing, Fault Tolerance
Parallel Algorithms: Sort & Merge, Image Processing, Fault Tolerance
 

En vedette

En vedette (17)

CArcMOOC 03.03 - Sequential circuits
CArcMOOC 03.03 - Sequential circuitsCArcMOOC 03.03 - Sequential circuits
CArcMOOC 03.03 - Sequential circuits
 
Urbinoir 2015 - il lato oscuro della rete
Urbinoir 2015 - il lato oscuro della reteUrbinoir 2015 - il lato oscuro della rete
Urbinoir 2015 - il lato oscuro della rete
 
Android Code Camp for Beginners - Ecosistema Android (IT)
Android Code Camp for Beginners - Ecosistema Android (IT)Android Code Camp for Beginners - Ecosistema Android (IT)
Android Code Camp for Beginners - Ecosistema Android (IT)
 
CodyQuiz live per HoC 2016
CodyQuiz live per HoC 2016CodyQuiz live per HoC 2016
CodyQuiz live per HoC 2016
 
The Europe Code Week (CodeEU) initiative
The Europe Code Week (CodeEU) initiativeThe Europe Code Week (CodeEU) initiative
The Europe Code Week (CodeEU) initiative
 
CArcMOOC 02.01 - Digital encodings
CArcMOOC 02.01 - Digital encodingsCArcMOOC 02.01 - Digital encodings
CArcMOOC 02.01 - Digital encodings
 
CArcMOOC 03.05 - RTL design
CArcMOOC 03.05 - RTL designCArcMOOC 03.05 - RTL design
CArcMOOC 03.05 - RTL design
 
CArcMOOC 01.01 - Automated information processing
CArcMOOC 01.01 - Automated information processingCArcMOOC 01.01 - Automated information processing
CArcMOOC 01.01 - Automated information processing
 
CArcMOOC 01.02 - Brief history of computing
CArcMOOC 01.02 - Brief history of computingCArcMOOC 01.02 - Brief history of computing
CArcMOOC 01.02 - Brief history of computing
 
CArcMOOC 02.02 - Encodings of numerical sets
CArcMOOC 02.02 - Encodings of numerical setsCArcMOOC 02.02 - Encodings of numerical sets
CArcMOOC 02.02 - Encodings of numerical sets
 
CodyQuiz live per CodeWeek 2016
CodyQuiz live per CodeWeek 2016CodyQuiz live per CodeWeek 2016
CodyQuiz live per CodeWeek 2016
 
Pixel art
Pixel artPixel art
Pixel art
 
CArcMOOC 05.03 - Pipeline hazards
CArcMOOC 05.03 - Pipeline hazardsCArcMOOC 05.03 - Pipeline hazards
CArcMOOC 05.03 - Pipeline hazards
 
CodeMOOC2 - Cos'è un'App
CodeMOOC2 - Cos'è un'AppCodeMOOC2 - Cos'è un'App
CodeMOOC2 - Cos'è un'App
 
CArcMOOC 06.04 - Dynamic optimizations
CArcMOOC 06.04 - Dynamic optimizationsCArcMOOC 06.04 - Dynamic optimizations
CArcMOOC 06.04 - Dynamic optimizations
 
CodeMOOC2 - Dall'idea alla specifica
CodeMOOC2 - Dall'idea alla specificaCodeMOOC2 - Dall'idea alla specifica
CodeMOOC2 - Dall'idea alla specifica
 
CArcMOOC 06.03 - Multiple-issue processors
CArcMOOC 06.03 - Multiple-issue processorsCArcMOOC 06.03 - Multiple-issue processors
CArcMOOC 06.03 - Multiple-issue processors
 

Similaire à CArcMOOC 03.04 - Gate-level design

Lecture 2- Practical AD and DA Conveters (Online Learning).pptx
Lecture 2- Practical AD and DA Conveters (Online Learning).pptxLecture 2- Practical AD and DA Conveters (Online Learning).pptx
Lecture 2- Practical AD and DA Conveters (Online Learning).pptx
HamzaJaved306957
 
D Belver FEE for Trasgos
D Belver  FEE for TrasgosD Belver  FEE for Trasgos
D Belver FEE for Trasgos
Miguel Morales
 
RFID tag anti collision protocols
RFID tag anti collision protocolsRFID tag anti collision protocols
RFID tag anti collision protocols
Arsnet
 

Similaire à CArcMOOC 03.04 - Gate-level design (20)

design-compiler.pdf
design-compiler.pdfdesign-compiler.pdf
design-compiler.pdf
 
Spacecraft RF Communications Course Sampler
Spacecraft RF Communications Course SamplerSpacecraft RF Communications Course Sampler
Spacecraft RF Communications Course Sampler
 
Slide11 icc2015
Slide11 icc2015Slide11 icc2015
Slide11 icc2015
 
IMT Advanced
IMT AdvancedIMT Advanced
IMT Advanced
 
Lecture 2- Practical AD and DA Conveters (Online Learning).pptx
Lecture 2- Practical AD and DA Conveters (Online Learning).pptxLecture 2- Practical AD and DA Conveters (Online Learning).pptx
Lecture 2- Practical AD and DA Conveters (Online Learning).pptx
 
Active Filter Design Using PSpice
Active Filter Design Using PSpiceActive Filter Design Using PSpice
Active Filter Design Using PSpice
 
E 2017 1
E 2017 1E 2017 1
E 2017 1
 
Chapter 10- Synchronisation.ppt
Chapter 10- Synchronisation.pptChapter 10- Synchronisation.ppt
Chapter 10- Synchronisation.ppt
 
Digital modulation
Digital modulationDigital modulation
Digital modulation
 
Digital to analog convertor
Digital to analog convertorDigital to analog convertor
Digital to analog convertor
 
15757597 (1).ppt
15757597 (1).ppt15757597 (1).ppt
15757597 (1).ppt
 
Application of Non-linear Electronics in Digital Communication
Application of Non-linear Electronics in Digital CommunicationApplication of Non-linear Electronics in Digital Communication
Application of Non-linear Electronics in Digital Communication
 
Analog to Digital Converters and Data Acquisition Systems
Analog to Digital Converters and Data Acquisition SystemsAnalog to Digital Converters and Data Acquisition Systems
Analog to Digital Converters and Data Acquisition Systems
 
Fast020702
Fast020702Fast020702
Fast020702
 
Introduction to OFDM.ppt
Introduction to  OFDM.pptIntroduction to  OFDM.ppt
Introduction to OFDM.ppt
 
A Simple Communication System Design Lab #4 with MATLAB Simulink
A Simple Communication System Design Lab #4 with MATLAB SimulinkA Simple Communication System Design Lab #4 with MATLAB Simulink
A Simple Communication System Design Lab #4 with MATLAB Simulink
 
OFDM
OFDMOFDM
OFDM
 
D Belver FEE for Trasgos
D Belver  FEE for TrasgosD Belver  FEE for Trasgos
D Belver FEE for Trasgos
 
RFID tag anti collision protocols
RFID tag anti collision protocolsRFID tag anti collision protocols
RFID tag anti collision protocols
 
Timing Analysis
Timing AnalysisTiming Analysis
Timing Analysis
 

Plus de Alessandro Bogliolo

Plus de Alessandro Bogliolo (20)

BIBMOOC 05.03 - Codici in biblioteca
BIBMOOC 05.03 - Codici in bibliotecaBIBMOOC 05.03 - Codici in biblioteca
BIBMOOC 05.03 - Codici in biblioteca
 
BIBMOOC 06.02 - Buone pratiche: Il caso di Settimo Torinese - Lisa Marcenaro ...
BIBMOOC 06.02 - Buone pratiche: Il caso di Settimo Torinese - Lisa Marcenaro ...BIBMOOC 06.02 - Buone pratiche: Il caso di Settimo Torinese - Lisa Marcenaro ...
BIBMOOC 06.02 - Buone pratiche: Il caso di Settimo Torinese - Lisa Marcenaro ...
 
BIBMOOC 5.2 - Algoritmi in biblioteca
BIBMOOC 5.2 - Algoritmi in bibliotecaBIBMOOC 5.2 - Algoritmi in biblioteca
BIBMOOC 5.2 - Algoritmi in biblioteca
 
BIBMOOC 05.01 - Installazioni di coding e gamification
BIBMOOC 05.01 - Installazioni di coding e gamificationBIBMOOC 05.01 - Installazioni di coding e gamification
BIBMOOC 05.01 - Installazioni di coding e gamification
 
BIBMOOC 06.01 - Buone pratiche: il caso di CSBNO - Giovanni Mojoli
BIBMOOC 06.01 - Buone pratiche: il caso di CSBNO - Giovanni MojoliBIBMOOC 06.01 - Buone pratiche: il caso di CSBNO - Giovanni Mojoli
BIBMOOC 06.01 - Buone pratiche: il caso di CSBNO - Giovanni Mojoli
 
Nuovi LIDI - Lezione 1
Nuovi LIDI - Lezione 1Nuovi LIDI - Lezione 1
Nuovi LIDI - Lezione 1
 
BIBMOOC 04.04 - Progettualità e opportunità di finanziamento - Simona Villa
BIBMOOC 04.04 - Progettualità e opportunità di finanziamento - Simona VillaBIBMOOC 04.04 - Progettualità e opportunità di finanziamento - Simona Villa
BIBMOOC 04.04 - Progettualità e opportunità di finanziamento - Simona Villa
 
BIBMOOC 04.03 - Progettare spazi per la cultura - Marco Muscogiuri
BIBMOOC 04.03 - Progettare spazi per la cultura - Marco MuscogiuriBIBMOOC 04.03 - Progettare spazi per la cultura - Marco Muscogiuri
BIBMOOC 04.03 - Progettare spazi per la cultura - Marco Muscogiuri
 
BIBMOOC 04.02 - Marketing culturale - Anna Busa
BIBMOOC 04.02 - Marketing culturale - Anna BusaBIBMOOC 04.02 - Marketing culturale - Anna Busa
BIBMOOC 04.02 - Marketing culturale - Anna Busa
 
BIBMOOC 3.2 - Coding unplugged fai-da-te
BIBMOOC 3.2 - Coding unplugged fai-da-teBIBMOOC 3.2 - Coding unplugged fai-da-te
BIBMOOC 3.2 - Coding unplugged fai-da-te
 
BIBMOOC 03.01 - Programmazione visuale a blocchi
BIBMOOC 03.01 - Programmazione visuale a blocchiBIBMOOC 03.01 - Programmazione visuale a blocchi
BIBMOOC 03.01 - Programmazione visuale a blocchi
 
BIBMOOC 02.01 - Esecutore ideale e istruzioni elementari
BIBMOOC 02.01 - Esecutore ideale e istruzioni elementariBIBMOOC 02.01 - Esecutore ideale e istruzioni elementari
BIBMOOC 02.01 - Esecutore ideale e istruzioni elementari
 
BIBMOOC 02.02 - Sequenze di istruzioni ripetizione e condizioni
BIBMOOC 02.02 - Sequenze di istruzioni ripetizione e condizioniBIBMOOC 02.02 - Sequenze di istruzioni ripetizione e condizioni
BIBMOOC 02.02 - Sequenze di istruzioni ripetizione e condizioni
 
BIBMOOC 01.03 - Le biblioteche e la loro funzione sociale - Chiara Faggiolani
BIBMOOC 01.03 - Le biblioteche e la loro funzione sociale - Chiara FaggiolaniBIBMOOC 01.03 - Le biblioteche e la loro funzione sociale - Chiara Faggiolani
BIBMOOC 01.03 - Le biblioteche e la loro funzione sociale - Chiara Faggiolani
 
BIBMOOC 1.2 - Coding e pensiero computazionale
BIBMOOC 1.2 - Coding e pensiero computazionaleBIBMOOC 1.2 - Coding e pensiero computazionale
BIBMOOC 1.2 - Coding e pensiero computazionale
 
BIBMOOC 1.1 - Informazione e rappresentazioni digitali
BIBMOOC 1.1 - Informazione e rappresentazioni digitaliBIBMOOC 1.1 - Informazione e rappresentazioni digitali
BIBMOOC 1.1 - Informazione e rappresentazioni digitali
 
CodyTrip a BTO2021
CodyTrip a BTO2021CodyTrip a BTO2021
CodyTrip a BTO2021
 
AIMOOC 7.3 - Per una IA etica - Claudia Chiavarino
AIMOOC 7.3 - Per una IA etica - Claudia ChiavarinoAIMOOC 7.3 - Per una IA etica - Claudia Chiavarino
AIMOOC 7.3 - Per una IA etica - Claudia Chiavarino
 
AIMOOC 7.2 - La strategia europea per l'I.A. - Lucilla Sioli
AIMOOC 7.2 - La strategia europea per l'I.A. - Lucilla SioliAIMOOC 7.2 - La strategia europea per l'I.A. - Lucilla Sioli
AIMOOC 7.2 - La strategia europea per l'I.A. - Lucilla Sioli
 
AIMOOC 5.5 - Programmazione o addestramento? - Alessandro Bogliolo
AIMOOC 5.5 - Programmazione o addestramento? - Alessandro BoglioloAIMOOC 5.5 - Programmazione o addestramento? - Alessandro Bogliolo
AIMOOC 5.5 - Programmazione o addestramento? - Alessandro Bogliolo
 

Dernier

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 

Dernier (20)

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 

CArcMOOC 03.04 - Gate-level design