AboutStaticVariable.java
public class AboutStaticVariable {
final static int companyname = "Google";//Defined the class Variable static and final
public static void main(String args[]) {
System.out.println(companyname);
companyname="Apple";//I cannot change this variable value since it is defined as final
}
}
>>>Primitive Date Types------------------------------------------------------------------------------------------------------------