1Static keyword is used a lot in java.
2 Static means, you
3can access those static variables
4without creating an object,
5just by using a class name.
6This means that only one instance of
7that static member is created which
8is shared across all instances of the class.
9Basically we use static keyword when
10all members share same instance.