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