What is a final variable?
A final variable is one who’s value does not change. Once the value is set, it cannot be changed.
Can a class be marked as final?
Yes, once it is marked as final, it cannot be extended?
Can a method be marked as final?
Yes, a final method cannot be overridden by a child class.
What is a blank final variable?
When we declare a final variable without giving it an initial value, then it is called a blank final variable.