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;