MCQOPTIONS
Saved Bookmarks
| 1. |
What type of inheritance is illustrated in the following piece of code? class A(): pass class B(A): pass class C(B): pass |
| A. | Multi-level inheritance |
| B. | Multiple inheritance |
| C. | Hierarchical inheritance |
| D. | Single-level inheritance |
| Answer» B. Multiple inheritance | |