Static methods
have no instances.
They are called with the type name, not an instance identifier i.e we have no need to create the instance of class to call the static methods.So they are slightly faster than instance methods.
The static methods use the static keyword somewhere in the method declaration signature, usually as the first keyword or the second keyword after public
The static methods use the static keyword somewhere in the method declaration signature, usually as the first keyword or the second keyword after public