Question: What is an instance method?
- Instance methods can modify the state of an instance or the state of its parent class.
- Instance methods hold data related to the instance.
- An instance method is any class method that doesn't take any arguments.
- An instance method is a regular function that belongs to a class, but it must return `None`.
Answer: The correct answer of the above question is Option A:Instance methods can modify the state of an instance or the state of its parent class.