Inheritance
Inheritance is a PHP topic. In plain words you use it for class Student in a small OOP file. Don’t start with a slogan — start with that picture.
Smallest example: new Student('Asha', 72). Type it, run it, and say what you see. If you can do that from memory, you know Inheritance.
From the example next to this theory — Inheritance: scores array, print avg, then high marks.
Trap — public everything. Fix that before you talk about advanced PHP.
Viva — what is Inheritance? Then show new Student('Asha', 72). Then name the trap.
What is Inheritance? Show this: new Student('Asha', 72). Trap: public everything.