I\'m always confused between static and final keywords in java.
static
final
How are they different ?
Static variable values can get changed although one copy of the variable traverse through the application, whereas Final Variable values can be initialized once and cannot be changed throughout the application.