What is the purpose of the static keyword in a class method?
static
It indicates that the method is private and cannot be accessed externally.
It allows the method to be called without creating an instance of the class.
It specifies that the method is a constructor.
It makes the method read-only and prevents modifications.