Create the student class object which inherit the printinfo() from the abstract class People
Explanation:
Classes in object-oriented programming are blueprints of a defined type of data structure.
An object of an abstract class cannot be instantiated. So, the People class in question, is only inherited by the Student class which able to use the define printinfo() method.