Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Create a C++ program using Visual Studio that could be used by a college to trac

ID: 3561497 • Letter: C

Question

Create a C++ program using Visual Studio that could be used by a college to track its courses. In this program, create a CollegeCourse class includes fields representing department, course number, credit hours, and tuition. Create a child (sub class) class named LabCourse, that inherits all fields from the the CollegeCourse class, includes one more field that holds a lab fee charged in addition to the tuition. Create appropriate functions for these classes, and write a main() function that instantiates and uses objects of each class. Save the file as Courses.cpp.

GRADING RUBRIC:

- define a class named

Explanation / Answer

nt main()
{
collegecourse obj;
obj.setfeilds();
obj.displaydata();
obj.settututiondue();
obj.getname();
obj.debtname();
return 0;
getch();
}