Q. What is true about multiple inheritance in Python?
β
Correct Answer: (C)
Supported using tuple of parent classes
Explanation: Python supports multiple inheritance using the syntax `class Child(Parent1, Parent2):`.