What Type Of Inheritance Is Illustrated In The Following Python #1110
What type of inheritance is illustrated in the following Python code?</p> <pre><code class="language-python"> class A(): pass class B(A): pass class C(B): pass </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python OOPs - Python Inheritance - Quiz No.2.
What type of inheritance is illustrated in the following Python code?
class A(): pass class B(A): pass class C(B): pass
Multi-level inheritance
Multiple inheritance
Hierarchical inheritance
Single-level inheritance