SlideShare a Scribd company logo
1 of 23
Imperative and
Functional Programming
Rameses Francia
Mark Anthony Sencio
Imperative and Functional
•Programming paradigm.
programming paradigm.
•Fundamental style of computer programming.
•Paradigm differ in concepts and abstractions used to
represent the elements of program.
Imperative programming
How it stared?
•Latin word “imperare” means to “to command”
•Machine languages of the original computers
•FORTRAN
•John Backus at IBM starting in 1954
•the first major programming language to remove the
obstacles presented by machine code .
Imperative programming
How it stated?
Fortran
compiled language
•Named variables
•Complex expressions
•Subprograms
•many other features now common in imperative languages. 
Imperative Programming languages
•Basic
•C
•Assembly
•Java
•Ada
•PASCAL
•Forton
Imperative Programming
•based on commands that update variables in storage.
•assignment changes the value at a location.
•a program execution generates a sequence of states.
IMPERATIVE
PROGRAMMING IS
THE MOST POPULAR
Imperative
programming is
the easiest
IMPERATIVE
PROGRAMMING IS
THE WORST
Because….
• ERROR-PRONE
• NOT SCALABLE
• TOO COMPLICATED
How it works in PL’s?
getRemoteData(“example.com”, { data, error in
if error == nil {
parseData(data, { parsed, error in
if error == nil {
handleParsedData(parsed)
} else {
displayError(error)
}
})
} else {
dislpayError(error)
}
})
getRemoteData(“example.com”, { data, error in
if error == nil {
parseData(data, { parsed, error in
if error == nil {
if parsedDataValid(parsed) {
handleParseData(parsed)
} else {
displayError(error)
}
})
} else {
dislpayError(error)
}
})
getRemoteData(“example.com”, { data, error in
if error == nil {
parseData(data, { parsed, error in
if error == nil {
if ParsedDataValid(parsed) {
saveParsedDataIncache(parsed, { error in
if error == nil {
handleParseData(parsed)
} else {
displayError(error)
}
})
} else {
dislpayError(error)
}
})
getRemoteData(“example.com”, { data, error in
if error == nil {
parseData(data, { parsed, error in
if error == nil {
if ParsedDataValid(parsed) {
saveParsedDataInCache(parsed, { error in
if error == nil {
handleParseData(parsed), { error
in
if error == nil {
displaySuccess()
} else {
displayError(error)
}
})
} else {
Sample program of a imperative
using java programming
Java Code
SciCal.txt
functional programming
•Is when functions, not objects or procedures, are used as
the fundamental building blocks of a program.
•Abstraction and reducing complexity
•Lambda calculus
•Haskell
Functional programming
brief history
• Lambda calculus(Church and Rosser 1936)
• LISP(McCarthy 1960)
• Algol 60(Naure et al. 1963)
• ISWIM(Landin 1966)
• PAL(Evans 1968)
• SASL(Turner 1973-83)
• Development in Edinburgh(1969-80) –NPL, early ML, HOPE
• Miranda(1986)
• Haskell(1992)
Functional programming
HOW IT WORKS IN PL?
•Computations is carried out entirely through evaluation of
expressions.
•Emphasizes the composition and arrangement of functions,
often without specifying explicit steps
•Program correctness
•Shorter programs(lower lines to effect ratio)
Functional programming languages
Impure
•C++
•C#
•Java
•Lisp
•Python
Pure
• Haskell
• Charity
• Curry
• Miranda
• sequencel
main = putStrLn "Hello, world!"
03/14/16
Sample program of a Functional
using Haskell Language
• ThreadScope is a tool for performance
profiling of parallel Haskell programs.
The ThreadScope program allows us to debug
the parallel performance of Haskell
programs. Using ThreadScope we can check
to see that work is well balanced across the
available processors and spot performance
issues relating to garbage collection or poor
load balancing.

More Related Content

What's hot

R4ML: An R Based Scalable Machine Learning Framework
R4ML: An R Based Scalable Machine Learning FrameworkR4ML: An R Based Scalable Machine Learning Framework
R4ML: An R Based Scalable Machine Learning FrameworkAlok Singh
 
Functional programming ideas in python
Functional programming ideas in pythonFunctional programming ideas in python
Functional programming ideas in pythonManish Tomar
 
Scala - The Simple Parts, SFScala presentation
Scala - The Simple Parts, SFScala presentationScala - The Simple Parts, SFScala presentation
Scala - The Simple Parts, SFScala presentationMartin Odersky
 
Scala: functional programming for the imperative mind
Scala: functional programming for the imperative mindScala: functional programming for the imperative mind
Scala: functional programming for the imperative mindSander Mak (@Sander_Mak)
 
The Rise of Functional Programming
The Rise of Functional ProgrammingThe Rise of Functional Programming
The Rise of Functional ProgrammingTjerk Wolterink
 
Practical Malware Analysis: Ch 6: Recognizing C Code Constructs in Assembly
Practical Malware Analysis: Ch 6: Recognizing C Code Constructs in AssemblyPractical Malware Analysis: Ch 6: Recognizing C Code Constructs in Assembly
Practical Malware Analysis: Ch 6: Recognizing C Code Constructs in AssemblySam Bowne
 
Functional Programming in Ruby
Functional Programming in RubyFunctional Programming in Ruby
Functional Programming in RubyAlex Teut
 
2014 10 java 8 major new language features
2014 10 java 8 major new language features2014 10 java 8 major new language features
2014 10 java 8 major new language featuresNeil Brown
 
Introduction to Scala
Introduction to ScalaIntroduction to Scala
Introduction to ScalaSynesso
 
ReactiveX
ReactiveXReactiveX
ReactiveXBADR
 
Enhancements in Java 9 Streams
Enhancements in Java 9 StreamsEnhancements in Java 9 Streams
Enhancements in Java 9 StreamsCorneil du Plessis
 
CNIT 126 6: Recognizing C Code Constructs in Assembly
CNIT 126 6: Recognizing C Code Constructs in Assembly CNIT 126 6: Recognizing C Code Constructs in Assembly
CNIT 126 6: Recognizing C Code Constructs in Assembly Sam Bowne
 
Functional Programming #FTW
Functional Programming #FTWFunctional Programming #FTW
Functional Programming #FTWAdriano Bonat
 

What's hot (20)

Beautiful Parrot
Beautiful ParrotBeautiful Parrot
Beautiful Parrot
 
R4ML: An R Based Scalable Machine Learning Framework
R4ML: An R Based Scalable Machine Learning FrameworkR4ML: An R Based Scalable Machine Learning Framework
R4ML: An R Based Scalable Machine Learning Framework
 
Functional programming ideas in python
Functional programming ideas in pythonFunctional programming ideas in python
Functional programming ideas in python
 
Scala - The Simple Parts, SFScala presentation
Scala - The Simple Parts, SFScala presentationScala - The Simple Parts, SFScala presentation
Scala - The Simple Parts, SFScala presentation
 
Scala: functional programming for the imperative mind
Scala: functional programming for the imperative mindScala: functional programming for the imperative mind
Scala: functional programming for the imperative mind
 
The Rise of Functional Programming
The Rise of Functional ProgrammingThe Rise of Functional Programming
The Rise of Functional Programming
 
Scilab
ScilabScilab
Scilab
 
What’s new in java 8
What’s new in java 8What’s new in java 8
What’s new in java 8
 
Practical Malware Analysis: Ch 6: Recognizing C Code Constructs in Assembly
Practical Malware Analysis: Ch 6: Recognizing C Code Constructs in AssemblyPractical Malware Analysis: Ch 6: Recognizing C Code Constructs in Assembly
Practical Malware Analysis: Ch 6: Recognizing C Code Constructs in Assembly
 
Functional Programming in Ruby
Functional Programming in RubyFunctional Programming in Ruby
Functional Programming in Ruby
 
Preparing for Scala 3
Preparing for Scala 3Preparing for Scala 3
Preparing for Scala 3
 
2014 10 java 8 major new language features
2014 10 java 8 major new language features2014 10 java 8 major new language features
2014 10 java 8 major new language features
 
Introduction to Scala
Introduction to ScalaIntroduction to Scala
Introduction to Scala
 
Introduction to Scala
Introduction to ScalaIntroduction to Scala
Introduction to Scala
 
Java 8 features
Java 8 featuresJava 8 features
Java 8 features
 
ReactiveX
ReactiveXReactiveX
ReactiveX
 
Enhancements in Java 9 Streams
Enhancements in Java 9 StreamsEnhancements in Java 9 Streams
Enhancements in Java 9 Streams
 
CNIT 126 6: Recognizing C Code Constructs in Assembly
CNIT 126 6: Recognizing C Code Constructs in Assembly CNIT 126 6: Recognizing C Code Constructs in Assembly
CNIT 126 6: Recognizing C Code Constructs in Assembly
 
Functional Programming #FTW
Functional Programming #FTWFunctional Programming #FTW
Functional Programming #FTW
 
Introduction
IntroductionIntroduction
Introduction
 

Viewers also liked

Presentació natalia y estefania
Presentació natalia y estefaniaPresentació natalia y estefania
Presentació natalia y estefaniaestefaniaaa92
 
Capstone Lessons Learned
Capstone Lessons LearnedCapstone Lessons Learned
Capstone Lessons LearnedGuy DeMarco
 
Finland 2
Finland 2Finland 2
Finland 2olos97
 
John Kresevic Loan Officer
John Kresevic   Loan OfficerJohn Kresevic   Loan Officer
John Kresevic Loan OfficerJohn Kresevic
 
Arete Complete Summer 2015
Arete Complete Summer 2015Arete Complete Summer 2015
Arete Complete Summer 2015Paul Moston
 
Presentation1
Presentation1Presentation1
Presentation1eaicskth
 
The economic valuation of a graduate diploma for
The economic valuation of a graduate diploma forThe economic valuation of a graduate diploma for
The economic valuation of a graduate diploma forJuan Apolinario Reyes
 
JOHN VENEZIA RESUME 2
JOHN VENEZIA RESUME 2JOHN VENEZIA RESUME 2
JOHN VENEZIA RESUME 2JOHN VENEZIA
 
Enterprise resource planning system & data warehousing implementation
Enterprise resource planning system & data warehousing implementationEnterprise resource planning system & data warehousing implementation
Enterprise resource planning system & data warehousing implementationSumya Abdelrazek
 
Gestational diabetes type 2 by Dr ihsan shah
Gestational diabetes type 2 by Dr ihsan shahGestational diabetes type 2 by Dr ihsan shah
Gestational diabetes type 2 by Dr ihsan shahAyub Medical College
 
The Innocent, Kingly-edits
The Innocent, Kingly-editsThe Innocent, Kingly-edits
The Innocent, Kingly-editsRachel Holt
 
The New Science for Optimizing your Tech Sales Reach with N3, InsideSales + S...
The New Science for Optimizing your Tech Sales Reach with N3, InsideSales + S...The New Science for Optimizing your Tech Sales Reach with N3, InsideSales + S...
The New Science for Optimizing your Tech Sales Reach with N3, InsideSales + S...n3marketing
 
Pemimpin Mempersiapkan Pelaksanaan UU Desa
Pemimpin Mempersiapkan Pelaksanaan UU DesaPemimpin Mempersiapkan Pelaksanaan UU Desa
Pemimpin Mempersiapkan Pelaksanaan UU Desagunawankusumo
 

Viewers also liked (20)

Presentació natalia y estefania
Presentació natalia y estefaniaPresentació natalia y estefania
Presentació natalia y estefania
 
Capstone Lessons Learned
Capstone Lessons LearnedCapstone Lessons Learned
Capstone Lessons Learned
 
MERCEDES BENZ
MERCEDES BENZMERCEDES BENZ
MERCEDES BENZ
 
Finland 2
Finland 2Finland 2
Finland 2
 
John Kresevic Loan Officer
John Kresevic   Loan OfficerJohn Kresevic   Loan Officer
John Kresevic Loan Officer
 
vikas resume (1)
vikas resume (1)vikas resume (1)
vikas resume (1)
 
Repeat Offender
Repeat OffenderRepeat Offender
Repeat Offender
 
Arete Complete Summer 2015
Arete Complete Summer 2015Arete Complete Summer 2015
Arete Complete Summer 2015
 
Presentation1
Presentation1Presentation1
Presentation1
 
Sandip Patel_ASU
Sandip Patel_ASUSandip Patel_ASU
Sandip Patel_ASU
 
The economic valuation of a graduate diploma for
The economic valuation of a graduate diploma forThe economic valuation of a graduate diploma for
The economic valuation of a graduate diploma for
 
JOHN VENEZIA RESUME 2
JOHN VENEZIA RESUME 2JOHN VENEZIA RESUME 2
JOHN VENEZIA RESUME 2
 
Factores influyentes
Factores influyentesFactores influyentes
Factores influyentes
 
Enterprise resource planning system & data warehousing implementation
Enterprise resource planning system & data warehousing implementationEnterprise resource planning system & data warehousing implementation
Enterprise resource planning system & data warehousing implementation
 
Gestational diabetes type 2 by Dr ihsan shah
Gestational diabetes type 2 by Dr ihsan shahGestational diabetes type 2 by Dr ihsan shah
Gestational diabetes type 2 by Dr ihsan shah
 
The Innocent, Kingly-edits
The Innocent, Kingly-editsThe Innocent, Kingly-edits
The Innocent, Kingly-edits
 
Certificates002
Certificates002Certificates002
Certificates002
 
The New Science for Optimizing your Tech Sales Reach with N3, InsideSales + S...
The New Science for Optimizing your Tech Sales Reach with N3, InsideSales + S...The New Science for Optimizing your Tech Sales Reach with N3, InsideSales + S...
The New Science for Optimizing your Tech Sales Reach with N3, InsideSales + S...
 
Sebastian
SebastianSebastian
Sebastian
 
Pemimpin Mempersiapkan Pelaksanaan UU Desa
Pemimpin Mempersiapkan Pelaksanaan UU DesaPemimpin Mempersiapkan Pelaksanaan UU Desa
Pemimpin Mempersiapkan Pelaksanaan UU Desa
 

Similar to Imperative and-functional-programming

The security professional's guide to programming - Eric Vanderburg
The security professional's guide to programming - Eric VanderburgThe security professional's guide to programming - Eric Vanderburg
The security professional's guide to programming - Eric VanderburgEric Vanderburg
 
Introduction to computing and Programming (ppt)
Introduction to computing and Programming (ppt)Introduction to computing and Programming (ppt)
Introduction to computing and Programming (ppt)arumemartin7
 
Introduction to functional programming (In Arabic)
Introduction to functional programming (In Arabic)Introduction to functional programming (In Arabic)
Introduction to functional programming (In Arabic)Omar Abdelhafith
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to javaattiqrocket
 
The Scheme Language -- Using it on the iPhone
The Scheme Language -- Using it on the iPhoneThe Scheme Language -- Using it on the iPhone
The Scheme Language -- Using it on the iPhoneJames Long
 
Can programming be liberated from the von neumann style?
Can programming be liberated from the von neumann style?Can programming be liberated from the von neumann style?
Can programming be liberated from the von neumann style?Oriol López Massaguer
 
Compiler Design
Compiler DesignCompiler Design
Compiler DesignMir Majid
 
Unit1 principle of programming language
Unit1 principle of programming languageUnit1 principle of programming language
Unit1 principle of programming languageVasavi College of Engg
 
Scala final ppt vinay
Scala final ppt vinayScala final ppt vinay
Scala final ppt vinayViplav Jain
 
Remix Your Language Tooling (JSConf.eu 2012)
Remix Your Language Tooling (JSConf.eu 2012)Remix Your Language Tooling (JSConf.eu 2012)
Remix Your Language Tooling (JSConf.eu 2012)lennartkats
 
Compiler Construction
Compiler ConstructionCompiler Construction
Compiler ConstructionAhmed Raza
 
Introduction Functional Programming - Tech Hangout #11 - 2013.01.16
Introduction Functional Programming - Tech Hangout #11 - 2013.01.16Introduction Functional Programming - Tech Hangout #11 - 2013.01.16
Introduction Functional Programming - Tech Hangout #11 - 2013.01.16Innovecs
 
Programming Paradigm & Languages
Programming Paradigm & LanguagesProgramming Paradigm & Languages
Programming Paradigm & LanguagesGaditek
 

Similar to Imperative and-functional-programming (20)

DMA113 Chap1
DMA113 Chap1DMA113 Chap1
DMA113 Chap1
 
The security professional's guide to programming - Eric Vanderburg
The security professional's guide to programming - Eric VanderburgThe security professional's guide to programming - Eric Vanderburg
The security professional's guide to programming - Eric Vanderburg
 
Introduction to computing and Programming (ppt)
Introduction to computing and Programming (ppt)Introduction to computing and Programming (ppt)
Introduction to computing and Programming (ppt)
 
PARADIGM IT.pptx
PARADIGM IT.pptxPARADIGM IT.pptx
PARADIGM IT.pptx
 
Introduction to functional programming (In Arabic)
Introduction to functional programming (In Arabic)Introduction to functional programming (In Arabic)
Introduction to functional programming (In Arabic)
 
Lesson1 intro
Lesson1 introLesson1 intro
Lesson1 intro
 
Lesson1 intro
Lesson1 introLesson1 intro
Lesson1 intro
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 
The Scheme Language -- Using it on the iPhone
The Scheme Language -- Using it on the iPhoneThe Scheme Language -- Using it on the iPhone
The Scheme Language -- Using it on the iPhone
 
02paradigms.ppt
02paradigms.ppt02paradigms.ppt
02paradigms.ppt
 
Can programming be liberated from the von neumann style?
Can programming be liberated from the von neumann style?Can programming be liberated from the von neumann style?
Can programming be liberated from the von neumann style?
 
Ic lecture8
Ic lecture8 Ic lecture8
Ic lecture8
 
Compiler Design
Compiler DesignCompiler Design
Compiler Design
 
Unit1 principle of programming language
Unit1 principle of programming languageUnit1 principle of programming language
Unit1 principle of programming language
 
Scala final ppt vinay
Scala final ppt vinayScala final ppt vinay
Scala final ppt vinay
 
Remix Your Language Tooling (JSConf.eu 2012)
Remix Your Language Tooling (JSConf.eu 2012)Remix Your Language Tooling (JSConf.eu 2012)
Remix Your Language Tooling (JSConf.eu 2012)
 
Compiler Construction
Compiler ConstructionCompiler Construction
Compiler Construction
 
Introductory func prog
Introductory func progIntroductory func prog
Introductory func prog
 
Introduction Functional Programming - Tech Hangout #11 - 2013.01.16
Introduction Functional Programming - Tech Hangout #11 - 2013.01.16Introduction Functional Programming - Tech Hangout #11 - 2013.01.16
Introduction Functional Programming - Tech Hangout #11 - 2013.01.16
 
Programming Paradigm & Languages
Programming Paradigm & LanguagesProgramming Paradigm & Languages
Programming Paradigm & Languages
 

Recently uploaded

Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 

Recently uploaded (20)

Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 

Imperative and-functional-programming