Question: When should you use a static method?
- when your method is related to the object's characteristics
- when you want your method to be available independently of class instances
- when your method uses an object's instance variable
- when your method is dependent on the specific instance that calls it
Answer: The correct answer of the above question is Option B:when you want your method to be available independently of class instances