• support@answerspoint.com

What is oops ?

2500

What is oops (Object Oriented Programming) ?

1Answer


0

OOPs is an Object Oriented Programming language, which is the extension of Procedure Oriented Programming language.OOps reduce the code of the program because of the extensive feature of Polymorphism. OOps have many properties such as DataHiding, Inheritence, Data Absraction, Data Encapsulation and many more.

Object Oriented Programming
1. In Object Oriented Programming a program is created in a way as real world works.
2. Follow bottom to top approach.
3. Secure because it have proper way of data hiding.
4. Provide code reusability feature.
5. Provide ability to simulate real-world event much more effectively.
6. Fast Development.


The important terms related to Object Oriented Programming.

Class :− This is a programmer-defined data type, which includes local functions as well as local data. You can think of a class as a template for making many instances of the same kind (or class) of object.

Object :− An individual instance of the data structure defined by a class. You define a class once and then make many objects that belong to it. Objects are also known as instance.

Member Variable :− These are the variables defined inside a class. This data will be invisible to the outside of the class and can be accessed via member functions. These variables are called attribute of the object once an object is created.

Member function :− These are the function defined inside a class and are used to access object data.

Inheritance :− When a class is defined by inheriting existing function of a parent class then it is called inheritance. Here child class will inherit all or few member functions and variables of a parent class.

Parent class :− A class that is inherited from by another class. This is also called a base class or super class.

Child Class :− A class that inherits from another class. This is also called a subclass or derived class.

Polymorphism :− This is an object oriented concept where same function can be used for different purposes. For example function name will remain same but it make take different number of arguments and can do different task.

Overloading :− a type of polymorphism in which some or all of operators have different implementations depending on the types of their arguments. Similarly functions can also be overloaded with different implementation.

Data Abstraction :− Any representation of data in which the implementation details are hidden (abstracted).

Encapsulation :− refers to a concept where we encapsulate all the data and member functions together to form an object.

Constructor :− refers to a special type of function which will be called automatically whenever there is an object formation from a class.

Destructor :− refers to a special type of function which will be called automatically whenever an object is deleted or goes out of scope.

  • answered 6 years ago
  • Community  wiki

Your Answer

    Facebook Share        
       
  • asked 6 years ago
  • viewed 2500 times
  • active 6 years ago

Best Rated Questions