Inheritance in Java

In this blog explain what is Inheritance, How to use inheritance & Types of Inheritance. Inheritance:- An object of one class behaving as an object of another class. In Java,…

Array In Java

This blog explain about Array in detailed. Array:- A group of similar data types is called an array. Arrays are used in computer programming to organize the same type of data.…

Final Keyword in Java

final keyword is used in different contexts. First of all, final is a non-access modifier applicable only to a variable, a method, or a class. The following are different contexts where final is used. Final…