- Static methods can be bound to either a class or an instance of a class.
- Static methods can access and modify the state of a class or an instance of a class.
- Static methods serve mostly as utility or helper methods, since they cannot access or modify a class’s state.
- Static methods are called static because they always return None.
Correct Answer:
- Static methods serve mostly as utility or helper methods, since they cannot access or modify a class’s state.