Posts

Showing posts from December, 2017

Object Oriented Programming Language

OOPs (Object Oriented Programming Language ): It is used to decompose a problem into a number of entities called objects and then builds data and  functions around these entities. => Object oriented programming is technique where we can define the object. => It divided the program into an object. => It follows the bottom up approach => Data is hidden and can not be accessed by external function. => New data and function can be easily added whenever necessary. opps follows the some concepts. 1) classes 2) Objects 3) Data Abstraction 4) Data Encapsulation 5) Inheritance 6) Polymorphism 7) Dynamic Binding 8) Message Passing. 1) Objects: => It is basic run time entities. => It is also a instance of class. => With object we can access the member function & data member of class. 2) classes => Class is the template for object. It is the logical unit. => A class contains the different data types ...