Question: C++ Modifying Class GradeBook) (a) Create a header file, GradeBook.h, which included the class definition and member function prototypes. Create a source file, GradeBook.cpp, which
C++ Modifying Class GradeBook) (a) Create a header file, GradeBook.h, which included the class definition and member function prototypes. Create a source file, GradeBook.cpp, which includes member functions definition and implementation, and includes "GradeBook.h". (b) Modify the set function to verify the length of the updated instructors name not more than 20 characters. If it is, take only the first 20character (c) Modify the set function to verify the length of the updated courses name not more than 30 characters. If it is, take only the first 30character (d) In the driver program (Assignment2.cpp) prompts to the user to enter the initial course name and the instructor name both exceeds the maximum length (e) Display the initial GradeBook information (f) Prompt to the user to enter the updated course name and instructor name within the maximum length, and display the updated GradeBook information

Please enter the course name: Please enter the instructor's name: Welcome to the Gradebook for: COMSC-165 Advanced Programming with C and C++ This course is presented by: Laura Lo Please enter the updated course name: COMSC-165: Advanced Programming in C and C++ Please enter the updated instructor's name: The course information has been changed to --- Welcome to the Gradebook for: COMSC-165: Advanced Programming in C and C++ This course is presented by: Program ended with exit code: 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
