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