SlideShare uma empresa Scribd logo
1 de 51
CS 332: Algorithms Asymptotic Performance
Review: Asymptotic Performance ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Review: Running Time ,[object Object],[object Object],[object Object],[object Object]
An Example: Insertion Sort ,[object Object],[object Object]
An Example: Insertion Sort ,[object Object],[object Object],30 10 40 20 1 2 3 4 i =     j =   key =   A[j] =     A[j+1] =  
An Example: Insertion Sort ,[object Object],[object Object],30 10 40 20 1 2 3 4 i = 2 j = 1 key = 10 A[j] = 30  A[j+1] = 10
An Example: Insertion Sort ,[object Object],[object Object],30 30 40 20 1 2 3 4 i = 2 j = 1 key = 10 A[j] = 30  A[j+1] = 30
An Example: Insertion Sort ,[object Object],[object Object],30 30 40 20 1 2 3 4 i = 2 j = 1 key = 10 A[j] = 30  A[j+1] = 30
An Example: Insertion Sort ,[object Object],[object Object],30 30 40 20 1 2 3 4 i = 2 j = 0 key = 10 A[j] =     A[j+1] = 30
An Example: Insertion Sort ,[object Object],[object Object],30 30 40 20 1 2 3 4 i = 2 j = 0 key = 10 A[j] =     A[j+1] = 30
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 2 j = 0 key = 10 A[j] =     A[j+1] = 10
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 3 j = 0 key = 10 A[j] =     A[j+1] = 10
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 3 j = 0 key = 40 A[j] =     A[j+1] = 10
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 3 j = 0 key = 40 A[j] =     A[j+1] = 10
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 3 j = 2 key = 40 A[j] = 30  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 3 j = 2 key = 40 A[j] = 30  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 3 j = 2 key = 40 A[j] = 30  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 4 j = 2 key = 40 A[j] = 30  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 4 j = 2 key = 20 A[j] = 30  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 4 j = 2 key = 20 A[j] = 30  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 4 j = 3 key = 20 A[j] = 40  A[j+1] = 20
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 20 1 2 3 4 i = 4 j = 3 key = 20 A[j] = 40  A[j+1] = 20
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 40 1 2 3 4 i = 4 j = 3 key = 20 A[j] = 40  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 40 1 2 3 4 i = 4 j = 3 key = 20 A[j] = 40  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 40 1 2 3 4 i = 4 j = 3 key = 20 A[j] = 40  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 40 1 2 3 4 i = 4 j = 2 key = 20 A[j] = 30  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 40 40 1 2 3 4 i = 4 j = 2 key = 20 A[j] = 30  A[j+1] = 40
An Example: Insertion Sort ,[object Object],[object Object],10 30 30 40 1 2 3 4 i = 4 j = 2 key = 20 A[j] = 30  A[j+1] = 30
An Example: Insertion Sort ,[object Object],[object Object],10 30 30 40 1 2 3 4 i = 4 j = 2 key = 20 A[j] = 30  A[j+1] = 30
An Example: Insertion Sort ,[object Object],[object Object],10 30 30 40 1 2 3 4 i = 4 j = 1 key = 20 A[j] = 10  A[j+1] = 30
An Example: Insertion Sort ,[object Object],[object Object],10 30 30 40 1 2 3 4 i = 4 j = 1 key = 20 A[j] = 10  A[j+1] = 30
An Example: Insertion Sort ,[object Object],[object Object],10 20 30 40 1 2 3 4 i = 4 j = 1 key = 20 A[j] = 10  A[j+1] = 20
An Example: Insertion Sort ,[object Object],[object Object],10 20 30 40 1 2 3 4 i = 4 j = 1 key = 20 A[j] = 10  A[j+1] = 20 Done!
Animating Insertion Sort ,[object Object],[object Object]
Insertion Sort ,[object Object],[object Object],What is the  precondition for this loop?
Insertion Sort ,[object Object],[object Object],How many times will  this loop execute?
Insertion Sort ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Analyzing Insertion Sort ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Analysis ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Upper Bound Notation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Insertion Sort Is O(n 2 ) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Big O Fact ,[object Object],[object Object],[object Object],[object Object],[object Object]
Lower Bound Notation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Asymptotic Tight Bound ,[object Object],[object Object],[object Object],[object Object]
Practical Complexity
Practical Complexity
Practical Complexity
Practical Complexity
Practical Complexity
Other Asymptotic Notations ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Up Next ,[object Object],[object Object],[object Object]

Mais conteúdo relacionado

Destaque

Chistes De Medicos Diapositivas
Chistes De Medicos DiapositivasChistes De Medicos Diapositivas
Chistes De Medicos Diapositivasd.sole
 
Asymptotic analysis
Asymptotic analysisAsymptotic analysis
Asymptotic analysisSoujanya V
 
Object oriented techniques
Object oriented techniquesObject oriented techniques
Object oriented techniquesLearnNowOnline
 
Practica - Organización de la Facultad de Letras y Ciencias Humanas
Practica - Organización de la Facultad de Letras y Ciencias HumanasPractica - Organización de la Facultad de Letras y Ciencias Humanas
Practica - Organización de la Facultad de Letras y Ciencias HumanasNanettt
 
Skiena algorithm 2007 lecture02 asymptotic notation
Skiena algorithm 2007 lecture02 asymptotic notationSkiena algorithm 2007 lecture02 asymptotic notation
Skiena algorithm 2007 lecture02 asymptotic notationzukun
 
lecture 30
lecture 30lecture 30
lecture 30sajinsc
 
lecture 5
lecture 5lecture 5
lecture 5sajinsc
 
Lec 5 asymptotic notations and recurrences
Lec 5 asymptotic notations and recurrencesLec 5 asymptotic notations and recurrences
Lec 5 asymptotic notations and recurrencesAnkita Karia
 

Destaque (9)

Luismruedas
LuismruedasLuismruedas
Luismruedas
 
Chistes De Medicos Diapositivas
Chistes De Medicos DiapositivasChistes De Medicos Diapositivas
Chistes De Medicos Diapositivas
 
Asymptotic analysis
Asymptotic analysisAsymptotic analysis
Asymptotic analysis
 
Object oriented techniques
Object oriented techniquesObject oriented techniques
Object oriented techniques
 
Practica - Organización de la Facultad de Letras y Ciencias Humanas
Practica - Organización de la Facultad de Letras y Ciencias HumanasPractica - Organización de la Facultad de Letras y Ciencias Humanas
Practica - Organización de la Facultad de Letras y Ciencias Humanas
 
Skiena algorithm 2007 lecture02 asymptotic notation
Skiena algorithm 2007 lecture02 asymptotic notationSkiena algorithm 2007 lecture02 asymptotic notation
Skiena algorithm 2007 lecture02 asymptotic notation
 
lecture 30
lecture 30lecture 30
lecture 30
 
lecture 5
lecture 5lecture 5
lecture 5
 
Lec 5 asymptotic notations and recurrences
Lec 5 asymptotic notations and recurrencesLec 5 asymptotic notations and recurrences
Lec 5 asymptotic notations and recurrences
 

Semelhante a Lecture 2

D&AA Lecture 2 insertion sort.ppt
D&AA Lecture 2 insertion sort.pptD&AA Lecture 2 insertion sort.ppt
D&AA Lecture 2 insertion sort.pptHaniaKhan75
 
Lecture12,13,14.pdf
Lecture12,13,14.pdfLecture12,13,14.pdf
Lecture12,13,14.pdfzainab278016
 
Data Structure Insertion sort
Data Structure Insertion sort Data Structure Insertion sort
Data Structure Insertion sort Mahesh Dheravath
 
Problem Solving using codes Strings-Extra.pptx
Problem Solving using codes Strings-Extra.pptxProblem Solving using codes Strings-Extra.pptx
Problem Solving using codes Strings-Extra.pptxhappycocoman
 
Engineering ppt by venay magen
Engineering ppt by venay magenEngineering ppt by venay magen
Engineering ppt by venay magenvenaymagen19
 
Insertion sort analysis
Insertion sort analysisInsertion sort analysis
Insertion sort analysisKumar
 
ゲーム理論BASIC 演習32 -時間決めゲーム:交渉ゲーム-
ゲーム理論BASIC 演習32 -時間決めゲーム:交渉ゲーム-ゲーム理論BASIC 演習32 -時間決めゲーム:交渉ゲーム-
ゲーム理論BASIC 演習32 -時間決めゲーム:交渉ゲーム-ssusere0a682
 
Top school in delhi ncr
Top school in delhi ncrTop school in delhi ncr
Top school in delhi ncrEdhole.com
 
Real Life Uses of a Program (Tik Tok Toy Game) useing by C Programming
Real Life Uses of a Program (Tik Tok Toy Game) useing by C Programming Real Life Uses of a Program (Tik Tok Toy Game) useing by C Programming
Real Life Uses of a Program (Tik Tok Toy Game) useing by C Programming Badhon Biswas
 
Data Structure: Algorithm and analysis
Data Structure: Algorithm and analysisData Structure: Algorithm and analysis
Data Structure: Algorithm and analysisDr. Rajdeep Chatterjee
 
AB-RNA-Nussinov-2011
AB-RNA-Nussinov-2011AB-RNA-Nussinov-2011
AB-RNA-Nussinov-2011Paula Tataru
 
Asymptotic notations
Asymptotic notationsAsymptotic notations
Asymptotic notationsEhtisham Ali
 

Semelhante a Lecture 2 (20)

D&AA Lecture 2 insertion sort.ppt
D&AA Lecture 2 insertion sort.pptD&AA Lecture 2 insertion sort.ppt
D&AA Lecture 2 insertion sort.ppt
 
insertion sort.ppt
insertion sort.pptinsertion sort.ppt
insertion sort.ppt
 
Lecture12,13,14.pdf
Lecture12,13,14.pdfLecture12,13,14.pdf
Lecture12,13,14.pdf
 
Data Structure Insertion sort
Data Structure Insertion sort Data Structure Insertion sort
Data Structure Insertion sort
 
Problem Solving using codes Strings-Extra.pptx
Problem Solving using codes Strings-Extra.pptxProblem Solving using codes Strings-Extra.pptx
Problem Solving using codes Strings-Extra.pptx
 
lec2.ppt
lec2.pptlec2.ppt
lec2.ppt
 
lec2.ppt
lec2.pptlec2.ppt
lec2.ppt
 
Engineering ppt by venay magen
Engineering ppt by venay magenEngineering ppt by venay magen
Engineering ppt by venay magen
 
Insertion sort analysis
Insertion sort analysisInsertion sort analysis
Insertion sort analysis
 
Insertion Sort
Insertion SortInsertion Sort
Insertion Sort
 
Prelude to halide_public
Prelude to halide_publicPrelude to halide_public
Prelude to halide_public
 
Sortings
SortingsSortings
Sortings
 
Time complexity
Time complexityTime complexity
Time complexity
 
Dsa sorting
Dsa sortingDsa sorting
Dsa sorting
 
ゲーム理論BASIC 演習32 -時間決めゲーム:交渉ゲーム-
ゲーム理論BASIC 演習32 -時間決めゲーム:交渉ゲーム-ゲーム理論BASIC 演習32 -時間決めゲーム:交渉ゲーム-
ゲーム理論BASIC 演習32 -時間決めゲーム:交渉ゲーム-
 
Top school in delhi ncr
Top school in delhi ncrTop school in delhi ncr
Top school in delhi ncr
 
Real Life Uses of a Program (Tik Tok Toy Game) useing by C Programming
Real Life Uses of a Program (Tik Tok Toy Game) useing by C Programming Real Life Uses of a Program (Tik Tok Toy Game) useing by C Programming
Real Life Uses of a Program (Tik Tok Toy Game) useing by C Programming
 
Data Structure: Algorithm and analysis
Data Structure: Algorithm and analysisData Structure: Algorithm and analysis
Data Structure: Algorithm and analysis
 
AB-RNA-Nussinov-2011
AB-RNA-Nussinov-2011AB-RNA-Nussinov-2011
AB-RNA-Nussinov-2011
 
Asymptotic notations
Asymptotic notationsAsymptotic notations
Asymptotic notations
 

Mais de sajinsc

lecture 29
lecture 29lecture 29
lecture 29sajinsc
 
lecture 28
lecture 28lecture 28
lecture 28sajinsc
 
lecture 27
lecture 27lecture 27
lecture 27sajinsc
 
lecture 26
lecture 26lecture 26
lecture 26sajinsc
 
lecture 25
lecture 25lecture 25
lecture 25sajinsc
 
lecture 24
lecture 24lecture 24
lecture 24sajinsc
 
lecture 23
lecture 23lecture 23
lecture 23sajinsc
 
lecture 22
lecture 22lecture 22
lecture 22sajinsc
 
lecture 21
lecture 21lecture 21
lecture 21sajinsc
 
lecture 20
lecture 20lecture 20
lecture 20sajinsc
 
lecture 19
lecture 19lecture 19
lecture 19sajinsc
 
lecture 18
lecture 18lecture 18
lecture 18sajinsc
 
lecture 17
lecture 17lecture 17
lecture 17sajinsc
 
lecture 16
lecture 16lecture 16
lecture 16sajinsc
 
lecture 15
lecture 15lecture 15
lecture 15sajinsc
 
lecture 14
lecture 14lecture 14
lecture 14sajinsc
 
lecture 13
lecture 13lecture 13
lecture 13sajinsc
 
lecture 12
lecture 12lecture 12
lecture 12sajinsc
 
lecture 11
lecture 11lecture 11
lecture 11sajinsc
 
lecture 10
lecture 10lecture 10
lecture 10sajinsc
 

Mais de sajinsc (20)

lecture 29
lecture 29lecture 29
lecture 29
 
lecture 28
lecture 28lecture 28
lecture 28
 
lecture 27
lecture 27lecture 27
lecture 27
 
lecture 26
lecture 26lecture 26
lecture 26
 
lecture 25
lecture 25lecture 25
lecture 25
 
lecture 24
lecture 24lecture 24
lecture 24
 
lecture 23
lecture 23lecture 23
lecture 23
 
lecture 22
lecture 22lecture 22
lecture 22
 
lecture 21
lecture 21lecture 21
lecture 21
 
lecture 20
lecture 20lecture 20
lecture 20
 
lecture 19
lecture 19lecture 19
lecture 19
 
lecture 18
lecture 18lecture 18
lecture 18
 
lecture 17
lecture 17lecture 17
lecture 17
 
lecture 16
lecture 16lecture 16
lecture 16
 
lecture 15
lecture 15lecture 15
lecture 15
 
lecture 14
lecture 14lecture 14
lecture 14
 
lecture 13
lecture 13lecture 13
lecture 13
 
lecture 12
lecture 12lecture 12
lecture 12
 
lecture 11
lecture 11lecture 11
lecture 11
 
lecture 10
lecture 10lecture 10
lecture 10
 

Último

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Principled Technologies
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 

Último (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 

Lecture 2