
BASIC CONCEPTS OF OBJECT-ORIENTED PROGRAMMING 😀 It is necessary to understand some of the concepts used extensively in object-oriented programming . These include Objects Classes Data abstraction and encapsulation Inheritance Polymorphism Dynamic binding Message Passing 1.OBJECTS👀 Objects are the basic run-time entities in an object-oriented system. They may represent a person .Place , a bank account ,a table of data or any item that the program has to handle. They may also represent user-defined data such as vector ,time and lists. Programming problem is analyzed in te...