0% found this document useful (0 votes)
2 views

c++ notes1

C++ is an object-oriented programming language known for its better security, reusability, and maintainability. Object-oriented programming is characterized by four main principles: abstraction, encapsulation, inheritance, and polymorphism. Other examples of object-oriented programming languages include Java, Python, Perl, and C#.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

c++ notes1

C++ is an object-oriented programming language known for its better security, reusability, and maintainability. Object-oriented programming is characterized by four main principles: abstraction, encapsulation, inheritance, and polymorphism. Other examples of object-oriented programming languages include Java, Python, Perl, and C#.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

17/10 C++

what is C++?
A programming language.

Why c++?
better security
better reusability
better maintainability.

C++ is a object oriented programing language.


What is object oriented programming?
is it a language?
No its not a Lanaguage, its a programming principals
or programming styles or paradigm.

any other programming principals?


structure oriented
procedure oriented
C follows procedural oriented programming principals

How do we know what are object oriented programming


languages?

any language which follows below four features are called


object oriented programming languages.
1.Abstraction
2. Encapsulation
3. Inheritance
4. Polymorphism

Abstraction : giving only essential features and hiding


implementation details is called Abstraction.

Encapsulation : binding the data and functions in to a


single entity is called Encapsulation

Inheritance : mechanism of deriving a new class from


the existing class is called inheritance.

Polymorphism : single name many forms.

examples of oops

C++
Java
Python
Perl
C#

You might also like