Ood : static
https://www.geeksforgeeks.org/static-keyword-java/
When to use static variables and methods?
Use the static variable for the property that is common to all objects. For example, in class Student, all students shares the same college name. Use static methods for changing static variables.