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…

static vs non static java

Image referred from: http://www.sitesbay.com/java/images/basic-java/Static-and%20non-Static-Method-rules.png static: In Java, the ‘static’ keyword is used to declare members (variables and methods) that belong to the class itself, rather than to individual instances of…

Data types in Java

Before we discuss Java data types, programming languages categorized into two types there are, Statically typed programming languages Dynamically typed programming languages Image referred from: https://nosleepjavascript.com/javascript-is-best/ Statically typed programming languages…