Q. How can we prevent a class from being inherited?
β
Correct Answer: (C)
Python doesn't have built-in support to prevent inheritance
Explanation: Python doesn't have a `final` keyword. Preventing inheritance needs custom metaclass tricks.