Answer:Consider the following code segment:
class Book {……..};
class Prose : public Book {……….};
class Poetry : public Prose {……….};
The above code is an example of
Options
a) Multiple Inheritance
b) Multilevel Inheritance
c) Hierarchical Inheritance
d) Hybrid Inheritance
Answer : b) Multilevel Inheritance