Recent posts

Java - Polymorphism & Encapsulation

2 minute read

Polymorphism means when an entity behaves differently depending upon the context its being used. Moreover In other words Polymorphism is the capability of an...

Java - Introduction to OOPs

2 minute read

Object-oriented programming (OOP) is a programming style that uses “objects” (data structures consisting of data fields and methods together with their inter...

Java - Inheritance

3 minute read

Inheritance is the concept of a child class (sub class) automatically inheriting the variables and methods defined in its parent class (super class).