
Difference between overriding and overloading? Overloading Two methods are said to be overloaded if and only if both methods having the same name but difference arguments types. In C-language method overloading concept is not available hence we can’t declare multiple methods with same name but different arguments types. If there . . . Read more

What is Encapsulation? The process of binding data and corresponding method into a single unit is nothing but encapsulation. If any component follows Data Hiding and Abstraction such type of component is said to be encapsulated component. Encapsulation = Data hiding + Abstraction. Encapsulation is a principle of wrapping data . . . Read more

What is Abstraction? Abstraction is one of the most important principles in object-oriented software engineering and is closely related to several other important concepts, including encapsulation, inheritance, and polymorphism. Hiding internal implementation and just highlight the set of services what we are offering, is the concept of abstraction. Through Bank ATM . . . Read more