What are Static variables in JAVA?

Answer:
The static keyword denotes that a member variable, or method, can be accessed without requiring an instantiation of the class to which it belongs.
While programming you might have observed that there are many classes creating constants that can be read, without creating an object.
For example:

static final int VERSION = 2;
First answer by XVengeance. Last edit by Sri.wolf. Contributor trust: 0 [recommend contributor recommended]. Question popularity: 1 [recommend question].