1Final is used to apply restrictions on class, method, and variable.
2The final class can't be inherited, final method can't be overridden,
3and final variable value can't be changed. Final is a keyword
4
1private final String hello = "Hello World!";
2/*
3The keyword final states that the variable, method or class
4associated will not have it's value changed.
5*/