Q. Which of the following defines inheritance in Python?
β
Correct Answer: (C)
class A(B):
Explanation: In Python, inheritance is defined using `class A(B):`, where A is the subclass and B is the superclass.