0 / 60 seg.

What is the purpose of the static keyword in Java?

public class Utility {
    public static int add(int a, int b) {
        return a + b;
    }
}