Skip to main content

What are the features of Object Oriented Programming features ? OOP features





Object Oriented Programming (OOP) has the following important features.


Class

    A Class is a blueprint (plan or template) of an object that contains variables for storing data and functions to perform operations on the data.

Object

    Object is an instance of a class and basic run-time entities of an object oriented system. They may represent a person, a place or any item that the program must handle.

Abstraction

    Abstraction is "To represent the essential feature without representing the background details."

Abstraction is the process of hiding the working style of an object, and showing the information of an object in an understandable manner.

Encapsulation

    Wrapping up a data member and a method together into a single unit (class) is called Encapsulation.

Encapsulation means hiding the internal details of an object, in other words how an object does something.

Encapsulation is a technique used to protect the information in an object from another object.

Inheritance

   When a class includes a property of another class it is known as inheritance.

Inheritance is a process of object reusability.

Polymorphism

   Polymorphism means one name, many forms.

One function behaves in different forms.

In other words, "Many forms of a single object is called Polymorphism."

Comments

Popular posts from this blog

What is SQL?

SQL stands for Structured Query Language. SQL is used to communicate with a database. According to American National Standards Institute (ANSI), it is the standard language for relational database management systems. SQL statements are used to define and manipulate data on a database.  Some common relational database management systems that use SQL are: Oracle, Microsoft SQL Server, Access, etc.

How to Create Database in SQL Server

This article demonstrates how to Create Database in SQL server This steps is based on  SQL Server 2017 Express Edition (2008 edition is almost same )  Open Microsoft SQL Server Management Studio   Connect to Server (Login with id and password)    Right click over Databases Folder in Object Explorer Window     Select New Database... Then Open a New Database Window Then Enter a Name For  Database Then click OK then we can see our new data base under Databases folder in Object Explorer. See Our YouTube Video And Subscribe Our Channel For More Details 

What is C# ?

C# is pronounced as "C-Sharp". It is an object-oriented programming language provided by Microsoft that runs on .Net Framework. We can develop different types of Window and Web applications by the help of C# programming language. C# is designed for CLI (Common Language Infrastructure). CLI is a specification that describes executable code and runtime environment. C# is approved as a standard by ECMA and ISO.