Polymorphism Example in Java

In this tutorial, we will write a polymorphism program in java. Before that, you should have knowledge on the following topic in Java. Polymorphism in Java 1. Method Overloading: Method Overloading allows the user to have more than one method that has the same name, they are differed by the number of the parameter lists, … Read more

Encapsulation Example in java

In this tutorial, we will write an encapsulation program in java. Before that, you should have knowledge on the following topic in Java. Java Encapsulation Encapsulation in Java using setter and getter Output: Student Id: 1101 Student Name: Marshall Student Age: 20

Example of Abstraction in Java

In this tutorial, we will write a java program to demonstrate abstraction. Before that, you should have knowledge on the following topic in Java. Abstraction in Java Example of Abstraction in Java Source code: Example of abstract class in java: Output: Cat meows Dog barks