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 : Hidding the details of low level data from other. ...
Inheritance is the process by which one object acquires the properties of another object.
Latest Answer : Inheritance involves building upon an existing class so that additional or more-specialised functionality is added.A key design aspect of inheritance is that it is used in a manner which is understandable and supported by a clear, justifiable relationship. ...
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 : Polymorphism consists of 2 principles: Overloading and Overriding ...
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 : Encapsulation => Data + member in a Class. not necessairly Public private.Abstraction => Data + member in a Class. But hide the data that you dont want to use outside the class. make the things private that you dont want to show to client... ...
Latest Answer : A class is an Abstract Datatype which, when instantiated, sets aside memory which holds data in fields and references to the instructions for methods.An instance of a Class is a section of heap memory set aside, using the class's template, to hold ...
Latest Answer : Abstraction: We don't have to bother about the data type of the object while accessing it.Encapsulation: We put all the correlated data and methods in a class.Faran Shabbir ...
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 ...