Encapsulation is a process of binding or wrapping the data and the codes that operates on the data into a single entity. This keeps the data safe from outside interface and misuse. One way to think about
Latest Answer : Encapsulation with a simple example would be .Automatic Transmission on an automobile. It encapsulates 100's of bits of information about your engine, such as how much are accelerating, the pitch of the surface you are on, and the position of the ...
Inheritance is the process by which one object acquires the properties of another object.
Latest Answer : Inheritance is one of the important principles of OOP.Inheritance is the process by which one object acquires the properties of another object.By use of Inheritance , an object need only define those qualities that make it unique within its class.It can ...
The meaning of Polymorphism is something like one name many forms. Polymorphism enables one entity to be used as as general category for different types of actions. The specific action is determined by
Latest Answer : Polymorphisam: It can be catagorized into three ways.1. Method Overloading 2. Method Over-riding3. Interface methods implemented differently in different ways in sub-classes.Overloading: Define methods with same name , same return type with different ...
From a practical programming viewpoint, polymorphism exists in three distinct forms in Java: Method overloading Method overriding through inheritance Method overriding through the Java interface
Latest Answer : Method OverloadingMethod OverridingOperator OverloadingThese are the different forms of Polymorphism in Java. ...
Latest Answer : Data hiding is done by using access specifier and data encapsulation is wrapping of data which use default specifier. ...
Latest Answer : When you create a custom type (class) in any language, that class in OOP is called Object and when you create an istance of this class just as we create instance of built-in types e.g. (int a,float b)Â it is called instance of the object. ...
Latest Answer : Abstraction:Denotes the essential properties and behaviour of an object that differentiate it from other objects. e.g: We use objects but we're not concerned with whats going behind the scene.Encapsulation:Its a process of binding the data and its behaviour ...
Latest Answer : This is method of thinking to resolve the problem ( implimenting the applicaiton using software languages).           - POP : Procedure thinking  ( modular approach of solve the problem)        -OOP : Object Thinking ( object ...
Latest Answer : DOS: single process, single thread
Windows: multiple process, multiple threads ...
Latest Answer : Link list is a dynamic data structure for storing different type of data which may be primitive data types or user defined data types like structs and classes..Link list always contain the data types which are to be stored in the linked list and a pointer ...