What does it mean when you add the static keyword to a method?
public static void doSomething(){ //Well, do something! }
Can you add the
When you add a "static" keyword to a method, it means that underlying implementation gives the same result for any instance of the class. Needless to say, result varies with change in the value of parameters