Respuesta :
Answer:
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.
There are a lot of aspect to programming. The correct notation to specify the following inheritance is Class Students inherits from abstract class.
- Inheritance is simply known one of the key aspects of Object Oriented Programming (OOP).
It is known to help to give code re-usability. When writing the same code every time, one can be said to inherit the properties of one class into the other.
Learn more about Inheritance in programming from
https://brainly.com/question/14078098