For each object class include the following: displayPromotion () method which can be used to display the following messages: Video Game: Only certain of video game will be getting 10% discount. Sport Game: Booking court on week days will be getting 15% discount. Overridden toString() method that returns a string containing all the data fields’values.(photo 111) Write a driver program that uses a polymorphic array to store information for various video games and sport games. Use an array initializer to initialize the array with values. Then, display a list with all the game information. A sample output is provided below:(photo 112)
For each object class include the following:
displayPromotion () method which can be used to display the following messages:
Video Game: Only certain of video game will be getting 10% discount.
Sport Game: Booking court on week days will be getting 15% discount.
Overridden toString() method that returns a string containing all the data fields’values.(photo 111)
Write a driver program that uses a polymorphic array to store information for various video games and sport games. Use an array initializer to initialize the array with values. Then, display a list with all the game information. A sample output is provided below:(photo 112)
![General Output
---Configuration: <Default>--
Sport Games
===
Game Code: SG1002
Game Title: Tennis
Court: Court 1
Number of Player: 2
Promotion: Booking court on week days will be getting 15% discount.
Video Games
Game Code: VG1001
Game Title: Planting Games
Level: 25
Producer: POPCAP
Promotion: Only certain of video game will be getting 10% discount.
Sport Games
Game Code: SG1003
Game Title: Badminton
Court: Court 2
Number of Player: 4
Promotion: Booking court on week days will be getting 15% discount.
Process completed.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F285003f4-8484-455a-be8b-60ecdbd88ce4%2F219f4149-ba12-412a-900d-5be3046f0516%2F2bgfnwd_processed.png&w=3840&q=75)
![Question 1
Game
#gameCode:String
#gameTitle:String
#Game();
#Game(gameCode:String, gameTitle:String)
+toString():String
+displayPromotion(): String
VideoGames
SportGames
- level:int
- producer:String
-court:String
-noOfPlayer:int
+VideoGames(0
+VideoGames(level:int, producer:String)
+toString():String
+displayPromotion(): String
+ SportGames ()
+ SportGames ( court :String, noOfPlayer:int)
+toString():String
+displayPromotion(): String](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F285003f4-8484-455a-be8b-60ecdbd88ce4%2F219f4149-ba12-412a-900d-5be3046f0516%2Fuyvqzzb_processed.png&w=3840&q=75)
![](/static/compass_v2/shared-icons/check-mark.png)
public class Game {
//declaring instance variables
protected String gameCode;
protected String gameTitle;
protected Game() { //default constructor
gameCode="";
gameTitle="";
}
protected Game(String gameCode, String gameTitle) { //parameterized constructor
this.gameCode = gameCode;
this.gameTitle = gameTitle;
}
public String toString() {
return "\n================"
+ "\nGame Code: "+gameCode
+ "\nGame Title: "+gameTitle;
}
public String displayPromotion() {
return "Game class method";
}
}
Step by step
Solved in 5 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)