Explain what is OOP?

devquora
devquora

Posted On: Feb 22, 2018

 

Object-oriented programming (OOP) is a type of computer programming, also more commonly known as software design, in which the programmers define the data type of a data structure and the types of operations or functions which can be applied to the data structure.

The data structure becomes an object that includes both data and functions. Additionally, programmers can create relationships between one object and another. Object-oriented programming basically aims to implement real-world entities in programming. These include data abstraction, data encapsulation, inheritance, polymorphism and more.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    C++ Interview Questions

    What is the difference between #import and #include in C++?

    The statement #include is used in C++ to include the source file or import the header files containing definitions of f..

    C++ Interview Questions

    What is ‘this’ pointer?

    The ‘this’ pointer is passed as a hidden argument to all the non-static member method calls and is available as a l..

    C++ Interview Questions

    What are the vectors in C++?

    Vectors are a kind of data structure sequence containers, which represent arrays but can change in size. Just like arra..