Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I have to write a c++ program using classes and arrays: This is the program: We want to create a class called Course , which

I have to write a c++ program using classes and arrays:

This is the program:

We want to create a class called Course, which represents the course offered at ECE. A course is defined with the following attributes: code (string), name (string), description (string), and a list of students registered in the course (array of type Student from previous question). You can assume that a course cannot have more than 20 registered students. The member functions of the class Course must perform the following operations:

- Return the course code,

-Return the course name

-Modify the course name

-Return the course description

-Modify the course description

-Add a student to the course

-Remove student from a course

-Search if a student with a certain id number is registered in the course

-Output list of student

-Output the number of registered students

Test your class by prompting the user to enter information about one course and four students. Create the course object four objects of the class Students. Register the students in the course. Test the member functions of the class.

Deliverables:

-A file called student.h that contains the specification of the class.

-A file called student.cpp that contains the implementation of the member functions of the class.

-A file called course.h that contains the specification of the class.

-A file called course.cpp that contains the implementation of the member functions of the class.

-A file called testcourse.cpp that contains the main function.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 2012 Proceedings Part 2 Lnai 7197

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284892, 978-3642284892

More Books

Students also viewed these Databases questions

Question

3. What may be the goal of the team?

Answered: 1 week ago

Question

2. What type of team would you recommend?

Answered: 1 week ago