Recent posts

Java - Programming Fundamentals (Part 4)

2 minute read

We have created our initial classes, so now we want to compile the classes. In order to do that we open the command line (To open command line, go to start m...

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).