KnowledgeBoat Logo
|

Computer Science

What do you understand by Object Oriented Programming? Name two OOP languages.

OOP Intro Java

7 Likes

Answer

Object Oriented Programming is a modular approach of programming that gives stress to data over functions. It decomposes the program into a number of entities called Objects. Each Object contains data and functions to operate on that data. Objects cannot access each other's data, they only communicate through functions.

Two OOP languages are:

  1. Java
  2. C++

Answered By

5 Likes


Related Questions