SlideShare a Scribd company logo
1 of 50
Introduction to
Object-Oriented
Programming
Nilesh Dalvi
Patkar‐Varde College
nileshdalvi01@gmail.com
Why Do We Need Object‐Oriented 
Programming?
• Object‐Oriented Programming was 
developed because limitations were 
discovered in earlier approaches to 
programming.
• To appreciate what OOP does, we need to 
understand what these limitations are and 
how they arose from traditional 
programming languages. 
Procedure‐Oriented Programming
• C, Pascal, FORTRAN, and similar languages are 
procedural languages. 
• Each statement in the language tells the computer 
to do something: 
– get some input 
– add these numbers
– divide by 6
– display that output
• A program in a procedural language is a list of 
instructions.
Procedure‐Oriented Programming
Division into Functions:
• Procedural program is divided into functions
• Each function has a clearly defined purpose and a 
clearly defined interface to the other functions in 
the program.
• The idea of breaking a program into functions can 
be further extended by grouping a number of 
functions together into a larger entity called a 
module.
Procedure‐Oriented Programming
Division into Functions:
Fig 1: Structure of Procedure‐Oriented Programming
Procedure‐Oriented Programming
• In Multi‐function program important data 
items are placed as global so that they may 
be accessed by all functions.
• Each function may have its own local data.
Fig 2: Procedural paradigm
Procedure‐Oriented Programming
Drawbacks:
• Since every function has complete access to the global 
variables, the new programmer can corrupt the data 
accidentally by creating function. 
• We can access the data of one function from other since, 
there is no protection.
• In large program it is very difficult to identify what data is 
used by which function.
• Similarly, if new data is to be added, all the function 
needed to be modified to access the data.
• Does not model real world problem very well.
Procedure‐Oriented Programming
Characteristics:
• Emphasis is on doing things (algorithms).
• Large programs are divided into smaller programs known 
as functions.
• Most of the functions share global data.
• Data move openly around the system from function to 
function.
• Functions transform data from one form to another.
• Employs top‐down approach in program design.
Top‐Down Approach
• Top‐down decomposition is the process of breaking the 
overall procedure or task into component parts (modules) 
and then subdivide each component module until the 
lowest level of detail has been reached. 
• Example :The payroll system of a company can contain the 
following modules or tasks
– Master file
– Earnings
– Deductions
– Taxing
– Net earning
– Print reports
Object‐Oriented Programming
• OOP was introduced to overcome flaws in 
the procedural approach to programming.
• Such as lack of reusability & maintainability.
• Fundamental idea behind object‐oriented 
languages is to combine into a single unit 
both data and the functions that operate 
on that data. 
• Such a unit is called an object.
Object‐Oriented Programming
• In OOP, problem is divided into the number of 
entities called objects and then builds data and 
functions around these objects.
• It ties the data more closely to the functions that 
operate on it, and protects it from accidental 
modification from the outside functions.
• Data of an object can be accessed only by the 
functions associated with that object.
• Communication of the objects done through 
function.
Object‐Oriented Programming
Fig 3: Object‐Oriented paradigm
Object‐Oriented Programming
Characteristics:
• Emphasis on data rather than procedure.
• Programs are divided into entities known as objects.
• Data Structures are designed such that they characterize 
objects.
• Functions that operate on data of an object are tied 
together in data structures.
• Data is hidden and cannot be accessed by external 
functions.
• Objects communicate with each other through functions.
• New data and functions can be easily added whenever 
necessary.
• Follows bottom up design in program design.
Bottom up approach
• Reverse top‐down approach.
• Lower level tasks are first carried out and are then 
integrated to provide the solution of a single 
program.
• Lower level structures of the program are evolved 
first then higher level structures are created.
• It promotes code reuse.
• It may allow unit testing.  
Basic Concepts of oops
1. Objects
2. Classes
3. Data Abstraction
4. Data Encapsulation
5. Inheritance
6. Polymorphism
7. Dynamic binding 
8. Message Passing
Objects 
Attributes
Operation
OperationOperation
Operation
Objects 
• Objects are the basic run‐time entities of an 
object oriented system. 
• They may represent a person, a place or any 
item that the program must handle. 
• Example:
Fig 4: Representation of  object.
Objects 
• When a program is executed, the objects 
interact by sending messages to one 
another.
• For e.g. if “customer” and “account” are two 
objects in a program, then the customer 
object may send a message to the account 
object requesting for the bank balance.
• Each object contains data, and code to 
manipulate the data.
Classes
Class
Classes
• Classes are user‐defined data types and it 
behaves like built in types of programming 
language.
• Object contains code and data which can be 
made user define type using class.
• Objects are variables of class.
• Once a class has been defined we can create 
any number of objects for that class.
• A class is collections of objects of similar 
type.
Classes
• We can create object of class using following 
syntax,
• Syntax: class-name object-name;
• Here class name is class which is already created. 
Object name is any user define name. For 
example, if Student is class,
• Example:  Student ram, sham;
• In example ram and sham are name of objects for 
class Student. We can create any number of 
objects for class.
Encapsulation
Encapsulation
• Encapsulation is the first pillar or principle of 
object‐oriented programming.
• In simple words, “Encapsulation is a process of 
binding data members (variables, properties) 
and member functions (methods) into a single 
unit”.
• And Class is the best example of encapsulation.
Encapsulation
• For example: Medical store
• Lets say you have to buy some medicines. You go to 
the medical store and ask the chemist for the 
medicines. 
• Only the chemist has access to the medicines in the 
store based on your prescription. 
• The chemist knows what medicines to give to you.
• This reduces the risk of you taking any medicine 
that is not intended for you. 
Encapsulation
In this example,
• MEDICINES Member Variables.
• CHEMIST Member Methods.
• You External Application or piece of Code.
Encapsulation
Encapsulation
• Through Encapsulation, Data is not 
accessible to the outside world, and only 
those functions which are wrapped in the 
class can access it.
• Encapsulation solves the problem at the 
implementation level.
• A class can specify how accessible each of its 
members (variables, properties, and 
methods) is to code outside of the class.
Encapsulation
• So encapsulation means hiding the
important features of a class which is not
been needed to be exposed outside of a class
and exposing only necessary things of a class.
• Here hidden part of a class acts like
Encapsulation and exposed part of a class
acts like Abstraction.
Abstraction
Abstraction
• Abstraction refers representation of 
necessary features without including more 
details or explanations.
• Data abstraction is a programming (and 
design) technique that relies on the 
separation of interface and implementation.
Abstraction
• When you press a key on your keyboard the 
character appears on the screen, you need to 
know only this, but How exactly it works based on 
the electronically is not needed.
• This is called Abstraction.
Abstraction
• Another Example is when you use the remote 
control of your TV, you do not bother about how 
pressing a key in the remote changes the channel 
on the TV. You just know that pressing the + 
volume  button will increase the volume!
Inheritance
Inheritance
• The mechanism of deriving a new class 
from an old class is called inheritance or 
derivation. 
• The old class is known as base class while 
new class is known as derived class or sub 
class.
• The inheritance is the most powerful
features of OOP.
Inheritance
• For Example:
• Consider an example of family of three 
members having a mother, father & son 
named Jack.
• Jack father :  tall and dark
• Jack Mother :  Short and fair
• Jack is tall and fair, so he is said to have 
inherited the features of his father and 
mother resp.
Inheritance
• Through effective use of inheritance, you can 
save lot of time in your programming and 
also reduce errors
• Which in turn will increase the quality of 
work and productivity.
Inheritance
The different types of Inheritance are:
1. Single Inheritance
2. Hierarchical Inheritance
3. Multiple Inheritance
4. Multi Level Inheritance
• We will explain all of the above in detail later 
when we cover Inheritance.
Polymorphism
Polymorphism
• Polymorphism is a Greek term which means
ability to take more than one form.
• For example, + is used to make sum of two
numbers as well as it is used to combine two
strings.
• This is known as operator overloading because
same operator may behave differently on different
instances.
Polymorphism
• Same way functions can be overloaded. 
• For example, sum () function may takes two 
arguments or three arguments etc. i.e. sum (5, 7) 
or sum (4, 6, 8).
• Single function print() draws different objects.
Dynamic binding
• Binding means link between procedure call 
and code to be execute.
• It is the process of linking of a function call 
to the actual code of the function at run‐
time.
• That is, in dynamic binding, the actual code 
to be executed is not known to the compiler 
until run‐time. 
• It is also known late binding.
Dynamic binding
• For example, complier comes to know at 
runtime that which function of sum will be 
call either with two arguments or with three 
arguments. 
Message Passing
Message Passing
• Objects can communicate with each others by 
passing message same as people passing message 
with each other.
• Objects can send or receive message or information.
• Message passing involves the following basic steps:
– Creating classes that define objects & their behavior.
– Creating objects from class definitions.
– Establishing communication among objects.
• Concept of message passing makes it easier to talk 
about building systems that directly model or 
simulate their real‐world counterparts.
Message Passing
• For example, consider two classes Product and
Order. The object of the Product class can
communicate with the object of the Order class by
sending a request for placing order.
Message Passing
FacultyObjectStudentObject
MgmtObject Performance
Result
Performance
Benefits of OOP
• User can create new data type or users define data
type by making class.
• Code can be reuse by using inheritance.
• Data can be hiding from outside world by using
encapsulation.
• Operators or functions can be overloaded by using
polymorphism, so same functions or operators can
be used for multitasking.
Benefits of OOP
• Object oriented system can be easily upgrade from
small system to large system.
• It is easy to partition work for same project.
• Message passing techniques make communication
easier.
• Software complexity can be easily managed.
• Maintenances cost is less.
• Simple to implement.
Areas for applications of OOP
• Real time systems
• Simulation and modeling
• Object oriented database
• Hypertext, hypermedia and expertext
• AI and expert systems
• Neural network and parallel programming
• Decision support system
• Office automation system
• CIM / CAM / CAD systems
Introduction to oops concepts

More Related Content

What's hot

Basics of Object Oriented Programming in Python
Basics of Object Oriented Programming in PythonBasics of Object Oriented Programming in Python
Basics of Object Oriented Programming in PythonSujith Kumar
 
Fundamentals of OOP (Object Oriented Programming)
Fundamentals of OOP (Object Oriented Programming)Fundamentals of OOP (Object Oriented Programming)
Fundamentals of OOP (Object Oriented Programming)MD Sulaiman
 
Principles and advantages of oop ppt
Principles and advantages of oop pptPrinciples and advantages of oop ppt
Principles and advantages of oop pptdaxesh chauhan
 
Basic concepts of object oriented programming
Basic concepts of object oriented programmingBasic concepts of object oriented programming
Basic concepts of object oriented programmingSachin Sharma
 
C++ OOPS Concept
C++ OOPS ConceptC++ OOPS Concept
C++ OOPS ConceptBoopathi K
 
Object Oriented Concepts and Principles
Object Oriented Concepts and PrinciplesObject Oriented Concepts and Principles
Object Oriented Concepts and Principlesdeonpmeyer
 
Introduction to Java -unit-1
Introduction to Java -unit-1Introduction to Java -unit-1
Introduction to Java -unit-1RubaNagarajan
 
Object oriented programming
Object oriented programmingObject oriented programming
Object oriented programmingAmit Soni (CTFL)
 
object oriented Programming ppt
object oriented Programming pptobject oriented Programming ppt
object oriented Programming pptNitesh Dubey
 
Object Oriented Programming Using C++
Object Oriented Programming Using C++Object Oriented Programming Using C++
Object Oriented Programming Using C++Muhammad Waqas
 
Object Oriented Programming Lecture Notes
Object Oriented Programming Lecture NotesObject Oriented Programming Lecture Notes
Object Oriented Programming Lecture NotesFellowBuddy.com
 
OOP Introduction with java programming language
OOP Introduction with java programming languageOOP Introduction with java programming language
OOP Introduction with java programming languageMd.Al-imran Roton
 
Object oriented programming (oop) cs304 power point slides lecture 01
Object oriented programming (oop)   cs304 power point slides lecture 01Object oriented programming (oop)   cs304 power point slides lecture 01
Object oriented programming (oop) cs304 power point slides lecture 01Adil Kakakhel
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in javaTech_MX
 
Operator Overloading
Operator OverloadingOperator Overloading
Operator OverloadingNilesh Dalvi
 
Introduction to Java Programming
Introduction to Java ProgrammingIntroduction to Java Programming
Introduction to Java ProgrammingRavi Kant Sahu
 
Characteristics of OOPS
Characteristics of OOPS Characteristics of OOPS
Characteristics of OOPS abhishek kumar
 

What's hot (20)

Basics of Object Oriented Programming in Python
Basics of Object Oriented Programming in PythonBasics of Object Oriented Programming in Python
Basics of Object Oriented Programming in Python
 
Fundamentals of OOP (Object Oriented Programming)
Fundamentals of OOP (Object Oriented Programming)Fundamentals of OOP (Object Oriented Programming)
Fundamentals of OOP (Object Oriented Programming)
 
Principles and advantages of oop ppt
Principles and advantages of oop pptPrinciples and advantages of oop ppt
Principles and advantages of oop ppt
 
Basic concepts of object oriented programming
Basic concepts of object oriented programmingBasic concepts of object oriented programming
Basic concepts of object oriented programming
 
C++ OOPS Concept
C++ OOPS ConceptC++ OOPS Concept
C++ OOPS Concept
 
Basic concept of OOP's
Basic concept of OOP'sBasic concept of OOP's
Basic concept of OOP's
 
Object Oriented Concepts and Principles
Object Oriented Concepts and PrinciplesObject Oriented Concepts and Principles
Object Oriented Concepts and Principles
 
Introduction to Java -unit-1
Introduction to Java -unit-1Introduction to Java -unit-1
Introduction to Java -unit-1
 
Object oriented programming
Object oriented programmingObject oriented programming
Object oriented programming
 
object oriented Programming ppt
object oriented Programming pptobject oriented Programming ppt
object oriented Programming ppt
 
Object Oriented Programming Using C++
Object Oriented Programming Using C++Object Oriented Programming Using C++
Object Oriented Programming Using C++
 
Java tutorial PPT
Java tutorial PPTJava tutorial PPT
Java tutorial PPT
 
Object Oriented Programming Lecture Notes
Object Oriented Programming Lecture NotesObject Oriented Programming Lecture Notes
Object Oriented Programming Lecture Notes
 
OOP Introduction with java programming language
OOP Introduction with java programming languageOOP Introduction with java programming language
OOP Introduction with java programming language
 
Object oriented programming (oop) cs304 power point slides lecture 01
Object oriented programming (oop)   cs304 power point slides lecture 01Object oriented programming (oop)   cs304 power point slides lecture 01
Object oriented programming (oop) cs304 power point slides lecture 01
 
Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
 
Oops ppt
Oops pptOops ppt
Oops ppt
 
Operator Overloading
Operator OverloadingOperator Overloading
Operator Overloading
 
Introduction to Java Programming
Introduction to Java ProgrammingIntroduction to Java Programming
Introduction to Java Programming
 
Characteristics of OOPS
Characteristics of OOPS Characteristics of OOPS
Characteristics of OOPS
 

Viewers also liked

Object Oriented Programming Concepts
Object Oriented Programming ConceptsObject Oriented Programming Concepts
Object Oriented Programming Conceptsthinkphp
 
Introduction to Object-Oriented Programming & Design Principles (TCF 2014)
Introduction to Object-Oriented Programming & Design Principles (TCF 2014)Introduction to Object-Oriented Programming & Design Principles (TCF 2014)
Introduction to Object-Oriented Programming & Design Principles (TCF 2014)Michael Redlich
 
Oop c++class(final).ppt
Oop c++class(final).pptOop c++class(final).ppt
Oop c++class(final).pptAlok Kumar
 
20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental PrinciplesIntro C# Book
 
Introduction to oop
Introduction to oop Introduction to oop
Introduction to oop Kumar
 
Introduction to cpp
Introduction to cppIntroduction to cpp
Introduction to cppNilesh Dalvi
 
OOPs difference faqs-3
OOPs difference faqs-3OOPs difference faqs-3
OOPs difference faqs-3Umar Ali
 
implementing oop_concept
 implementing oop_concept implementing oop_concept
implementing oop_conceptAmit Gupta
 
5. Inheritances, Packages and Intefaces
5. Inheritances, Packages and Intefaces5. Inheritances, Packages and Intefaces
5. Inheritances, Packages and IntefacesNilesh Dalvi
 
Object Oriented Paradigm
Object Oriented ParadigmObject Oriented Paradigm
Object Oriented ParadigmHüseyin Ergin
 
Inheritance : Extending Classes
Inheritance : Extending ClassesInheritance : Extending Classes
Inheritance : Extending ClassesNilesh Dalvi
 
11 constructors in derived classes
11 constructors in derived classes11 constructors in derived classes
11 constructors in derived classesDocent Education
 
Introduction to object oriented programming
Introduction to object oriented programmingIntroduction to object oriented programming
Introduction to object oriented programmingAbzetdin Adamov
 
Multi level hierarchy
Multi level hierarchyMulti level hierarchy
Multi level hierarchymyrajendra
 

Viewers also liked (20)

Object Oriented Programming Concepts
Object Oriented Programming ConceptsObject Oriented Programming Concepts
Object Oriented Programming Concepts
 
Advance oops concepts
Advance oops conceptsAdvance oops concepts
Advance oops concepts
 
14. Linked List
14. Linked List14. Linked List
14. Linked List
 
Introduction to Object-Oriented Programming & Design Principles (TCF 2014)
Introduction to Object-Oriented Programming & Design Principles (TCF 2014)Introduction to Object-Oriented Programming & Design Principles (TCF 2014)
Introduction to Object-Oriented Programming & Design Principles (TCF 2014)
 
Oop c++class(final).ppt
Oop c++class(final).pptOop c++class(final).ppt
Oop c++class(final).ppt
 
Object Oriented Design
Object Oriented DesignObject Oriented Design
Object Oriented Design
 
20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles
 
OMAP
OMAPOMAP
OMAP
 
C++ chapter 1
C++ chapter 1C++ chapter 1
C++ chapter 1
 
Introduction to oop
Introduction to oop Introduction to oop
Introduction to oop
 
OOPs Concept
OOPs ConceptOOPs Concept
OOPs Concept
 
Introduction to cpp
Introduction to cppIntroduction to cpp
Introduction to cpp
 
OOPs difference faqs-3
OOPs difference faqs-3OOPs difference faqs-3
OOPs difference faqs-3
 
implementing oop_concept
 implementing oop_concept implementing oop_concept
implementing oop_concept
 
5. Inheritances, Packages and Intefaces
5. Inheritances, Packages and Intefaces5. Inheritances, Packages and Intefaces
5. Inheritances, Packages and Intefaces
 
Object Oriented Paradigm
Object Oriented ParadigmObject Oriented Paradigm
Object Oriented Paradigm
 
Inheritance : Extending Classes
Inheritance : Extending ClassesInheritance : Extending Classes
Inheritance : Extending Classes
 
11 constructors in derived classes
11 constructors in derived classes11 constructors in derived classes
11 constructors in derived classes
 
Introduction to object oriented programming
Introduction to object oriented programmingIntroduction to object oriented programming
Introduction to object oriented programming
 
Multi level hierarchy
Multi level hierarchyMulti level hierarchy
Multi level hierarchy
 

Similar to Introduction to oops concepts

Object Oriented programming - Introduction
Object Oriented programming - IntroductionObject Oriented programming - Introduction
Object Oriented programming - IntroductionMadishetty Prathibha
 
object oriented programming examples
object oriented programming examplesobject oriented programming examples
object oriented programming examplesAbdii Rashid
 
Oop in c++ lecture 1
Oop in c++  lecture 1Oop in c++  lecture 1
Oop in c++ lecture 1zk75977
 
Unit 1 introduction to c++.pptx
Unit 1 introduction to c++.pptxUnit 1 introduction to c++.pptx
Unit 1 introduction to c++.pptxshashiden1
 
SE-IT JAVA LAB OOP CONCEPT
SE-IT JAVA LAB OOP CONCEPTSE-IT JAVA LAB OOP CONCEPT
SE-IT JAVA LAB OOP CONCEPTnikshaikh786
 
Introduction to Functional Programming
Introduction to Functional ProgrammingIntroduction to Functional Programming
Introduction to Functional ProgrammingDave Fancher
 
C programming for Computing Techniques
C programming for Computing TechniquesC programming for Computing Techniques
C programming for Computing TechniquesAppili Vamsi Krishna
 
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptxCOMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptxSherinRappai1
 
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptxCOMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptxSherinRappai
 
Programming language paradigms
Programming language paradigmsProgramming language paradigms
Programming language paradigmsAshok Raj
 

Similar to Introduction to oops concepts (20)

Oop.pptx
Oop.pptxOop.pptx
Oop.pptx
 
Oop basic overview
Oop basic overviewOop basic overview
Oop basic overview
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 
Object Oriented programming - Introduction
Object Oriented programming - IntroductionObject Oriented programming - Introduction
Object Oriented programming - Introduction
 
object oriented programming examples
object oriented programming examplesobject oriented programming examples
object oriented programming examples
 
[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
 
OOP-1.pptx
OOP-1.pptxOOP-1.pptx
OOP-1.pptx
 
Oop in c++ lecture 1
Oop in c++  lecture 1Oop in c++  lecture 1
Oop in c++ lecture 1
 
Unit 2.pptx
Unit 2.pptxUnit 2.pptx
Unit 2.pptx
 
Unit 2.pptx
Unit 2.pptxUnit 2.pptx
Unit 2.pptx
 
80410172053.pdf
80410172053.pdf80410172053.pdf
80410172053.pdf
 
Unit 1 introduction to c++.pptx
Unit 1 introduction to c++.pptxUnit 1 introduction to c++.pptx
Unit 1 introduction to c++.pptx
 
SE-IT JAVA LAB OOP CONCEPT
SE-IT JAVA LAB OOP CONCEPTSE-IT JAVA LAB OOP CONCEPT
SE-IT JAVA LAB OOP CONCEPT
 
Introduction to Functional Programming
Introduction to Functional ProgrammingIntroduction to Functional Programming
Introduction to Functional Programming
 
C programming for Computing Techniques
C programming for Computing TechniquesC programming for Computing Techniques
C programming for Computing Techniques
 
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptxCOMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
 
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptxCOMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
COMPUTING AND PROGRAMMING FUNDAMENTAL.pptx
 
Programming language paradigms
Programming language paradigmsProgramming language paradigms
Programming language paradigms
 
[OOP - Lec 01] Introduction to OOP
[OOP - Lec 01] Introduction to OOP[OOP - Lec 01] Introduction to OOP
[OOP - Lec 01] Introduction to OOP
 
Oop’s
Oop’sOop’s
Oop’s
 

More from Nilesh Dalvi

More from Nilesh Dalvi (20)

13. Queue
13. Queue13. Queue
13. Queue
 
12. Stack
12. Stack12. Stack
12. Stack
 
11. Arrays
11. Arrays11. Arrays
11. Arrays
 
10. Introduction to Datastructure
10. Introduction to Datastructure10. Introduction to Datastructure
10. Introduction to Datastructure
 
9. Input Output in java
9. Input Output in java9. Input Output in java
9. Input Output in java
 
8. String
8. String8. String
8. String
 
7. Multithreading
7. Multithreading7. Multithreading
7. Multithreading
 
6. Exception Handling
6. Exception Handling6. Exception Handling
6. Exception Handling
 
4. Classes and Methods
4. Classes and Methods4. Classes and Methods
4. Classes and Methods
 
3. Data types and Variables
3. Data types and Variables3. Data types and Variables
3. Data types and Variables
 
2. Basics of Java
2. Basics of Java2. Basics of Java
2. Basics of Java
 
1. Overview of Java
1. Overview of Java1. Overview of Java
1. Overview of Java
 
Standard Template Library
Standard Template LibraryStandard Template Library
Standard Template Library
 
Templates
TemplatesTemplates
Templates
 
File handling
File handlingFile handling
File handling
 
Input and output in C++
Input and output in C++Input and output in C++
Input and output in C++
 
Strings
StringsStrings
Strings
 
Polymorphism
PolymorphismPolymorphism
Polymorphism
 
Constructors and destructors
Constructors and destructorsConstructors and destructors
Constructors and destructors
 
Classes and objects
Classes and objectsClasses and objects
Classes and objects
 

Recently uploaded

HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 

Recently uploaded (20)

HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 

Introduction to oops concepts