SlideShare ist ein Scribd-Unternehmen logo
1 von 25
Presented by :
• Kunal N. Sharma
• Shyam D. Hathaliya
Presentation on POP vs OOP
Outline:
•Procedure oriented programming language.
•Introduction to pop
•Characteristics
•Advantages
•Disadvantages
•Object Oriented programming language.
•Introduction to OOP
•Concepts of OOP
•Advantages
•Disadvantages
•Difference between OOP vs. POP.
What is procedural oriented programming?
•computer programming language that specifies a series of well-
structured steps and procedures within its programming context to
compose a program.
•It contains a systematic order of statements, functions and
commands to complete a computational task or program.
• In the procedure oriented approach, the problem is viewed as
a sequence of things to be done such as reading, calculating and
printing.
Some characteristics of Procedure Oriented
Programming:
•Large programs are divided into smaller programs known
as functions.
•Most of the functions share
global data.
•Data can easily flow from
one function to another.
•Functions transform data from one form to another.
•Employs top-down approach in program design.
Advantages of procedural oriented programming:
•Allows quick completion. It is faster than oop.
•It is good for general purpose programming.
•It has portable source code-use different compiler to target
Different CPUs.
•Large reference is available on well-tired tested algorithms
No need to reinvent the wheel.
•Requires less memory space.
Disadvantages of procedural oriented programming:
•It is difficult to relate with the real world objects.
•The codes are difficult to maintain, if code grow large.
•It does not have automatic memory management like java.
•There is no security of data.
•Difficult to modify old codes.
•There are no access specifies.
What Object-Oriented Programming?
• Object-oriented programming is centred on
creating objects rather than procedures/
functions.
• Objects are a melding of data and procedures
that manipulate that data.
• Data in an object are known as attributes.
• Procedures/functions in an object are known
as methods.
• Object
• Class
• Message
• Basic Principles of Object Orientation
• Abstraction
• Encapsulation
• Inheritance
• Polymorphism
• Interface and Abstract Class
Concepts of object oriented programming:
• Informally, an object represents an entity, either physical,
conceptual, or software.
– Physical entity
– Conceptual entity
– Software entity
Truck
Chemical
Process
Linked List
• The state of an object normally changes over time.
Name: J Clark
Employee ID: 567138
HireDate: 07/25/1991
Status: Tenured
Discipline: Finance
MaxLoad: 3
Name: J Clark
Employee ID: 567138
Date Hired: July 25, 1991
Status: Tenured
Discipline: Finance
Maximum Course Load: 3 classes
Professor Clark
Professor Clark
• Behavior determines how an object acts and reacts.
• The visible behavior of an object is modeled by the set of
messages it can respond to (operations the object can perform).
Professor Clark’s behavior
Submit Final Grades
Accept Course Offering
Take Sabbatical
Maximum Course Load: 3 classes TakeSabbatical()
Professor Clark
Professor Clark
Modularity is a fundamental aspect of all
successful large programs.
 Abstraction
 Emphasizes relevant characteristics.
 Suppresses other characteristics
Data Abstraction:
BriefCase
- Capacity
- Weight
+ open()
+ close()
• Encapsulation means to design, produce, and
describe software so that it can be easily used
without knowing the details of how it works.
• Also known as information hiding
Interface
Implementation details which
are invisible for client
Information which can’t be
accessed by client
Client Deposit()
Withdraw()
Transfer()
Balance
insterestYTD
Owner
Account_number
Deposit() {…}
Withdraw() {…}
Transfer() {…}
• Inheritance —a way of organizing classes
• Term comes from inheritance of traits like eye color, hair color,
and so on.
• Classes with properties in common can be grouped so that
their common properties are only defined once.
• Is an “is a kind of” relationship
Vehicle
Automobile Motorcycle Bus
Sedan Sports Car School Bus Luxury Bus
Polymorphism:
•The word polymorphism comes from Greek and means having
several different forms. This is one of the essential concepts of
object-oriented programming.
• Where inheritance is related to classes and (their hierarchy),
polymorphism is related to object methods.
•Types of polymorphism :
Overloading polymorphism
Parametric polymorphism
Advantages of Object-Oriented languages
include:
•Ease of management.
•Understand ability.
•Re-usability.
•Improved software-development productivity.
•Improved software maintainability.
•Faster development.
•Lower cost of development.
•Higher-quality software.
•The disadvantages of Object-Oriented
languages include:
•Over-generalization.
•Programs that are built using this language tend to take
longer to initially create.
•Slower program.
Object oriented programming.
Vs
Procedural oriented programming.
OOP POP
Centres in data types (classes,
prototypes)
Functions.
Data scope encapsulated data global data
What is first
data types then algorithms algorithms then data types
Subroutines are called
methods functions
Who access who
data is accessed by code, i.e.
ObjectInstance.getMeARando
mNumber();
code is accessed by data, i.e.
random_number =
getMeARandomNumber();
Have global data
No, but objects can have
public members
Yes, but functions can have
private variables
Data is called
member variable
Any Questions?

Weitere ähnliche Inhalte

Was ist angesagt?

Programming languages
Programming languagesProgramming languages
Programming languages
vito_carleone
 
Oop lec 2(introduction to object oriented technology)
Oop lec 2(introduction to object oriented technology)Oop lec 2(introduction to object oriented technology)
Oop lec 2(introduction to object oriented technology)
Asfand Hassan
 
software History
software Historysoftware History
software History
Avinash Avi
 
Program logic formulation
Program logic formulationProgram logic formulation
Program logic formulation
Sara Corpuz
 

Was ist angesagt? (20)

Computer architecture and organization
Computer architecture and organizationComputer architecture and organization
Computer architecture and organization
 
Programming Languages / Translators
Programming Languages / TranslatorsProgramming Languages / Translators
Programming Languages / Translators
 
Programming languages
Programming languagesProgramming languages
Programming languages
 
introduction to programming languages
introduction to programming languagesintroduction to programming languages
introduction to programming languages
 
Oop lec 2(introduction to object oriented technology)
Oop lec 2(introduction to object oriented technology)Oop lec 2(introduction to object oriented technology)
Oop lec 2(introduction to object oriented technology)
 
Computer Organization and Assembly Language
Computer Organization and Assembly LanguageComputer Organization and Assembly Language
Computer Organization and Assembly Language
 
software History
software Historysoftware History
software History
 
Introduction to Computer Science
Introduction to Computer ScienceIntroduction to Computer Science
Introduction to Computer Science
 
Software System
Software SystemSoftware System
Software System
 
Elements of programming
Elements of programmingElements of programming
Elements of programming
 
Introduction to software
Introduction to softwareIntroduction to software
Introduction to software
 
Procedural programming
Procedural programmingProcedural programming
Procedural programming
 
Assembly Language
Assembly LanguageAssembly Language
Assembly Language
 
Computer Programming
Computer ProgrammingComputer Programming
Computer Programming
 
Computer Organization
Computer Organization Computer Organization
Computer Organization
 
software characteristics
software characteristicssoftware characteristics
software characteristics
 
Programming languages
Programming languagesProgramming languages
Programming languages
 
Program logic formulation
Program logic formulationProgram logic formulation
Program logic formulation
 
Computer Science & Information Systems
Computer Science & Information SystemsComputer Science & Information Systems
Computer Science & Information Systems
 
Programming paradigm
Programming paradigmProgramming paradigm
Programming paradigm
 

Ähnlich wie Presentation c

1-Lec - Introduction vhvv,vbvv,v (2).ppt
1-Lec - Introduction vhvv,vbvv,v (2).ppt1-Lec - Introduction vhvv,vbvv,v (2).ppt
1-Lec - Introduction vhvv,vbvv,v (2).ppt
AqeelAbbas94
 
1 unit (oops)
1 unit (oops)1 unit (oops)
1 unit (oops)
Jay Patel
 
1unit-120324103142-phpapp02.pdf
1unit-120324103142-phpapp02.pdf1unit-120324103142-phpapp02.pdf
1unit-120324103142-phpapp02.pdf
SahajShrimal1
 

Ähnlich wie Presentation c (20)

SE-IT JAVA LAB OOP CONCEPT
SE-IT JAVA LAB OOP CONCEPTSE-IT JAVA LAB OOP CONCEPT
SE-IT JAVA LAB OOP CONCEPT
 
OOP-1.pptx
OOP-1.pptxOOP-1.pptx
OOP-1.pptx
 
C++ chapter 1
C++ chapter 1C++ chapter 1
C++ chapter 1
 
[OOP - Lec 02] Why do we need OOP
[OOP - Lec 02] Why do we need OOP[OOP - Lec 02] Why do we need OOP
[OOP - Lec 02] Why do we need OOP
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 
C++ in object oriented programming
C++ in object oriented programmingC++ in object oriented programming
C++ in object oriented programming
 
Oop.pptx
Oop.pptxOop.pptx
Oop.pptx
 
1. OBJECT ORIENTED PROGRAMMING USING JAVA - OOps Concepts.ppt
1. OBJECT ORIENTED PROGRAMMING USING JAVA - OOps Concepts.ppt1. OBJECT ORIENTED PROGRAMMING USING JAVA - OOps Concepts.ppt
1. OBJECT ORIENTED PROGRAMMING USING JAVA - OOps Concepts.ppt
 
Unit 2.pptx
Unit 2.pptxUnit 2.pptx
Unit 2.pptx
 
Unit 2.pptx
Unit 2.pptxUnit 2.pptx
Unit 2.pptx
 
1-Lec - Introduction vhvv,vbvv,v (2).ppt
1-Lec - Introduction vhvv,vbvv,v (2).ppt1-Lec - Introduction vhvv,vbvv,v (2).ppt
1-Lec - Introduction vhvv,vbvv,v (2).ppt
 
Object oriented programming 1 introduction to oop
Object oriented programming 1 introduction to oopObject oriented programming 1 introduction to oop
Object oriented programming 1 introduction to oop
 
[OOP - Lec 01] Introduction to OOP
[OOP - Lec 01] Introduction to OOP[OOP - Lec 01] Introduction to OOP
[OOP - Lec 01] Introduction to OOP
 
Introduction to oop with c++
Introduction to oop with c++Introduction to oop with c++
Introduction to oop with c++
 
1 unit (oops)
1 unit (oops)1 unit (oops)
1 unit (oops)
 
Introduction
IntroductionIntroduction
Introduction
 
Object Oriented Programming Overview for the PeopleSoft Developer
Object Oriented Programming Overview for the PeopleSoft DeveloperObject Oriented Programming Overview for the PeopleSoft Developer
Object Oriented Programming Overview for the PeopleSoft Developer
 
1unit-120324103142-phpapp02.pdf
1unit-120324103142-phpapp02.pdf1unit-120324103142-phpapp02.pdf
1unit-120324103142-phpapp02.pdf
 
Object-Oriented Analysis and Design
Object-Oriented Analysis and DesignObject-Oriented Analysis and Design
Object-Oriented Analysis and Design
 
Programming language paradigms
Programming language paradigmsProgramming language paradigms
Programming language paradigms
 

KĂźrzlich hochgeladen

KĂźrzlich hochgeladen (20)

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
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
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.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.
 
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...
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 

Presentation c

  • 1. Presented by : • Kunal N. Sharma • Shyam D. Hathaliya Presentation on POP vs OOP
  • 2. Outline: •Procedure oriented programming language. •Introduction to pop •Characteristics •Advantages •Disadvantages •Object Oriented programming language. •Introduction to OOP •Concepts of OOP •Advantages •Disadvantages •Difference between OOP vs. POP.
  • 3.
  • 4. What is procedural oriented programming? •computer programming language that specifies a series of well- structured steps and procedures within its programming context to compose a program. •It contains a systematic order of statements, functions and commands to complete a computational task or program. • In the procedure oriented approach, the problem is viewed as a sequence of things to be done such as reading, calculating and printing.
  • 5. Some characteristics of Procedure Oriented Programming: •Large programs are divided into smaller programs known as functions. •Most of the functions share global data. •Data can easily flow from one function to another. •Functions transform data from one form to another. •Employs top-down approach in program design.
  • 6. Advantages of procedural oriented programming: •Allows quick completion. It is faster than oop. •It is good for general purpose programming. •It has portable source code-use different compiler to target Different CPUs. •Large reference is available on well-tired tested algorithms No need to reinvent the wheel. •Requires less memory space.
  • 7. Disadvantages of procedural oriented programming: •It is difficult to relate with the real world objects. •The codes are difficult to maintain, if code grow large. •It does not have automatic memory management like java. •There is no security of data. •Difficult to modify old codes. •There are no access specifies.
  • 8.
  • 9. What Object-Oriented Programming? • Object-oriented programming is centred on creating objects rather than procedures/ functions. • Objects are a melding of data and procedures that manipulate that data. • Data in an object are known as attributes. • Procedures/functions in an object are known as methods.
  • 10.
  • 11. • Object • Class • Message • Basic Principles of Object Orientation • Abstraction • Encapsulation • Inheritance • Polymorphism • Interface and Abstract Class Concepts of object oriented programming:
  • 12. • Informally, an object represents an entity, either physical, conceptual, or software. – Physical entity – Conceptual entity – Software entity Truck Chemical Process Linked List
  • 13. • The state of an object normally changes over time. Name: J Clark Employee ID: 567138 HireDate: 07/25/1991 Status: Tenured Discipline: Finance MaxLoad: 3 Name: J Clark Employee ID: 567138 Date Hired: July 25, 1991 Status: Tenured Discipline: Finance Maximum Course Load: 3 classes Professor Clark Professor Clark
  • 14. • Behavior determines how an object acts and reacts. • The visible behavior of an object is modeled by the set of messages it can respond to (operations the object can perform). Professor Clark’s behavior Submit Final Grades Accept Course Offering Take Sabbatical Maximum Course Load: 3 classes TakeSabbatical() Professor Clark Professor Clark
  • 15. Modularity is a fundamental aspect of all successful large programs.  Abstraction  Emphasizes relevant characteristics.  Suppresses other characteristics Data Abstraction: BriefCase - Capacity - Weight + open() + close()
  • 16. • Encapsulation means to design, produce, and describe software so that it can be easily used without knowing the details of how it works. • Also known as information hiding
  • 17. Interface Implementation details which are invisible for client Information which can’t be accessed by client Client Deposit() Withdraw() Transfer() Balance insterestYTD Owner Account_number Deposit() {…} Withdraw() {…} Transfer() {…}
  • 18. • Inheritance —a way of organizing classes • Term comes from inheritance of traits like eye color, hair color, and so on. • Classes with properties in common can be grouped so that their common properties are only defined once. • Is an “is a kind of” relationship
  • 19. Vehicle Automobile Motorcycle Bus Sedan Sports Car School Bus Luxury Bus
  • 20. Polymorphism: •The word polymorphism comes from Greek and means having several different forms. This is one of the essential concepts of object-oriented programming. • Where inheritance is related to classes and (their hierarchy), polymorphism is related to object methods. •Types of polymorphism : Overloading polymorphism Parametric polymorphism
  • 21. Advantages of Object-Oriented languages include: •Ease of management. •Understand ability. •Re-usability. •Improved software-development productivity. •Improved software maintainability. •Faster development. •Lower cost of development. •Higher-quality software.
  • 22. •The disadvantages of Object-Oriented languages include: •Over-generalization. •Programs that are built using this language tend to take longer to initially create. •Slower program.
  • 24. OOP POP Centres in data types (classes, prototypes) Functions. Data scope encapsulated data global data What is first data types then algorithms algorithms then data types Subroutines are called methods functions Who access who data is accessed by code, i.e. ObjectInstance.getMeARando mNumber(); code is accessed by data, i.e. random_number = getMeARandomNumber(); Have global data No, but objects can have public members Yes, but functions can have private variables Data is called member variable