Static variables are class level variables declared with the static keyword. These can be accessed at compile time without creating any instance of the class. They are shared among all the instances of a class and any modification done to them will be reflected in all the classes. Read...