Search

Study Materials

We are provide some new think and also provide study Free materials all classes And give you teaching of your study purpose

Category

C++

Its literal meaning is “happening at same time”. Whereas in context of object it’s the property that distinguishes an active object from the one that is not active. The object oriented programming focuses upon data abstraction, encapsulation and inheritance, concurrency... Continue Reading →

Persistence

Its literal meaning is perseverance. It is the property of an object through which its existence continues even after its creator ceases to exist and location moves from the address apace in which it was created. Generally an object in... Continue Reading →

Typing (Genericity)

Typing is the enforcement of the class of an object, such that objects of different types may not be interchanged or at the most, they may be interchanged only in very restricted ways. It is technique for defining software components... Continue Reading →

Modularity

The Dictionary of the Object Technology defines modularity as: "The logical and physical decomposition of things (e.g., responsibilities and software) into small, simple groupings (e.g., requirements and classes, respectively), which increase the achievements of software-engineering goals."  Modularity is another way... Continue Reading →

Polymorphism

Polymorphism is the ability to use an operator or function in different ways. Polymorphism gives different meanings or functions to the operators or functions. Poly, referring too many, signifies the many uses of these operators and functions. A single function... Continue Reading →

Inheritance (Hierarchy)

Inheritance is the process by which new classes called derived classes are created from existing classes called base classes. The derived classes have all the features of the base class and the programmer can choose to add new features specific to the newly created... Continue Reading →

Classes & Objects

Classes are data types based on which objects are created. Objects with similar properties and methods are grouped together to form a Class. Thus a Class represent a set of individual objects. Characteristics of an object are represented in a... Continue Reading →

Encapsulation

Encapsulation is the process of combining data and functions into a single unit called class. Using the method of encapsulation, the programmer cannot directly access the data. Data is only accessible through the functions present inside the class. Data encapsulation... Continue Reading →

Data Abstraction

Abstraction is one of the most powerful and vital features provided by object-oriented C++ programming language. With this feature the programmer can abstract both data and code when needed.The concept of abstraction relates to the idea of hiding data that... Continue Reading →

Create a free website or blog at WordPress.com.

Up ↑