Since static variables belong to a class, we can access them directly using class name. So, we don't need any object reference.
We can only declare static variables at the class level.
We can access static fields without object initialization.
Finally, we can access static fields using an object reference . But we should avoid this because it becomes difficult to figure out if it’s an instance variable or a class variable. Instead, we should always refer to static variables using class name