using c++ Polymorphism: Create a class hierarchy with an abstract parent class named student which derived concrete cla
Posted: Fri May 20, 2022 3:27 pm
using c++
Polymorphism: Create a class hierarchy with an
abstract parent class named student which derived concrete classes
undergrad and grad. A student has a name and a studentId. An
undergrad student has a name, a studentId, and program registered
in. A grad student has a name, a studentId, and a supervisor. The
ability to create a student and display their contents is
required.
Polymorphism: Create a class hierarchy with an
abstract parent class named student which derived concrete classes
undergrad and grad. A student has a name and a studentId. An
undergrad student has a name, a studentId, and program registered
in. A grad student has a name, a studentId, and a supervisor. The
ability to create a student and display their contents is
required.