Class Variables or Instances variables are variables that are declared inside a class and are available for the whole class. They are available for all instances of that class and are not specific to any method.
Ex:
public class Test {
private String name = "Rocky";
}
Here name is a class variable.