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