Q. Which of the following keywords is used to inherit a class in Python?
β
Correct Answer: (D)
class Derived(Base):
Explanation: Python uses the syntax `class Derived(Base):` to inherit from a base class.