Question: Object Oriented Programming 1. Using the IDE on your computer, create a project called reviewl. Media -number: int -trackTitle: string - artiste: string -releaseDate: Date

Object Oriented Programming 1. Using the IDE on your computer, create a project called reviewl. Media -number: int -trackTitle: string - artiste: string -releaseDate: Date - Media) +Media(int,string, string, Date) Media (Media) set Number(int): void get Number(); int setTrackTitle(string): void getTrackTitle(): string setArtiste(string): void .getArtiste(): string set ReleaseDate(Date): void get ReleaseDate(): Date - display(): void Date -day: int -month: int -year: int Date() -Date(int, int,int) Date(Date) set Day(int) : void get Day(): int set Month(int): void |-get Month(): int *set Year(int) : void | get Year(): int |-display): void Write your id, name, lab day and time at the top of each file created as comments. 2. Complete the implementation for each of the classes in the UML diagram above in c++. 3. Add a driver file to your project. 4. Add code to the 'main' method of the driver file to demonstrate the following: a. Create three (3) Media objects using the three (3) constructors b. Display each object's state using the object's 'display' method c. Using the ratators of object created using the default constructor, change the vabies of the object d. Display the modified object's state using the object's 'display' method
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
