Q. Which of the following is an example of composition in OOP?
β
Correct Answer: (B)
class A: def __init__(self, b): self.b = b
Explanation: Composition involves using objects of other classes inside a class.