Posts

C++ First Unit

Image
    Unit -1 (Introduction and concept of OOP) 1 . POP & OOP OOP OOP, refers to Object Oriented Programming and its deals with objects and their properties. Major concepts of OOPs are − Class/objects Abstraction Encapsulation Polymorphism Inheritance POP POP, refers to Procedural Oriented Programming and its deals with programs and functions. Programs are divided into functions and data is global. Following are the important differences between OOP and POP. 2.Basic concept object oriented programming-objects Object-oriented programming is a type of programming that uses objects and classes its functioning. The object-oriented programming is based on real-world entities like inheritance, polymorphism, data hiding, etc. It aims at binding together data and function work on these data sets into a single entity to restrict their usage. Some basic concepts of object-oriented programming are − CLASS  OBJECTS ENCAPSULATION POLYMORPHISM INHERITANCE ABSTRACTION Class: A class ...