Can class variables be static?

Class variables are also known as static variables , and they are declared outside a method, with the help of the keyword ‘static’. Static variable is the one that is common to all the instances of the class. A single copy of the variable is shared among all objects.

Read more