Final and Static
Constants declared using modifier final also often declared using static.
The value of constants can’t be changed, so there might as well be only one value across all objects of the class
Constants cannot be declared inside a method.