Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ Please, commenting is appreciated, Screen shot out put please Suppose you need to process course information. Each course has a name and a mber
C++ Please, commenting is appreciated, Screen shot out put please
Suppose you need to process course information. Each course has a name and a mber of students who take the course. You should be able to add/drop a student to/from the course. You can use a class to model the courses:. Implement the Course class in three Course -courseName: string -students: string The name of the course. An array of students who take the course, students is a pointer for the array. The number of students (default:0) The maximum number of students allowed for the course. -numberofStudents: int -capacity: int +Course(courseName: string&, capacity: int) Creates a Course with the specified name and maximum +-CourseCO +getCourseNameO: string const +addStudent (name: string&): void +dropStudent (name: string&): void +getStudentsO: string const +getNumberOfStudentsO: int const number of students allowed Destructor Returns the course name. Adds a new student to the course Drops a student from the course. Returns the array of students for the course. Returns the number of students for the courseStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started