Related questions
Concept explainers
Assignment:
Use OOP to implement certain details and requirements for the assignment. The lab is about donkey kong characters and their statistics and information which is provided on a Monkey.txt file that must be read in. Some information of monkeys is below which will be used:
- Most species are arboreal, using all four limbs to leap from tree to tree. They can sit upright and stand erect. Most species run along branches rather than swinging arm over arm like apes. Monkeys are highly social omnivores, organized in clans as large as several hundred individuals headed by an old male.
The underlines are at least behavior (member functions) that you are asked to add to your OOP program such as Leap(string, string), Sit(), Walk(), Swing()... Here are some descriptions of a monkey that must apply to your program. The information from the Monkey.txt file will be used along with the format below.
Name Sit Walk Swing Leap Jump Banana Year Family
Donkey Kong Y Y Y N 3 3 1981 Donkey
Chunky Kong N Y Y Y 2 5 2007 Dixie
- You need to use an array of objects in this program
- Develop the program that can answer the following question related to Donkey Kong.
- Each answer can be a different function
- BEFORE STEP 1, POST ALL OF THE MONKEYS IN THE FORMAT ABOVE WITH THEIR INFORMATION AND STATS
- Develop a constructor that makes Donkey Family leap from "Papaya tree" to "Banana tree, but Dixie family from "Coconut tree" to "Rubber tree"
- Develop a destructor that deletes all the kongs
- Find and list the Donkey family members who cannot leap; take a screenshot and post
- Update the Banana field of all the Monkeys such Banana += Jump *5.
- List the Monkeys who have more than 15 bananas; take a screenshot and post
- Find and list the ones that were introduced before 1995; take a screenshot and post
- AFTER DONE POST THE MONKEYS AGAIN IN THE FORMAT ABOVE BUT WITH THE UPDATED BANANA COUNT AND INFO AND THEIR STATS
-HAVE THE PROGRAM READ FROM THE TXT FILE AND USE OOP
instructions above, Monkey.txt file with the info below.
Monkey.txt
Donkey Kong Y Y Y N 3 3 1981 Donkey
Cranky Kong Y Y N Y 1 0 1985 Donkey
Dixie Kong Y Y N Y 2 2 2001 Dixie
Kiddy Kong Y N Y N 1 1 2003 Dixie
Wrinkly Kong N N Y Y 1 2 1985 Donkey
Tiny Kong N N Y Y 2 1 2001 Dixie
Diddy Kong Y Y Y N 3 2 1985 Donkey
Uncle Kong Y N Y N 1 2 1990 Donkey
Chunky Kong N Y Y Y 2 5 2007 Dixie
Step by stepSolved in 4 steps with 3 images
- Create a UML diagram to document the Cuboid class. You can model this class after the Rectangle class we covered in this chapter. It should have 3 data fields: width, length, height. It should have 3 accessors and 3 mutators. It should have a method that calculates the volume of the cuboid. Save your file in MS Word or PDF format. Hint: In MS Word, you can create a table of 1 column and 3 rows. What is a cuboid? You can consider a cuboid as a cube whose length, width, and height may not be equal to each other.arrow_forward1. Declare an array to save 4 Dog objects. The Dog class is provided below. Look into the Dog class and find what attributes are needed for a dog object. Then initialize five dogs with the following information: Lily, 5 years old Jacob, 2 years old Sugar, 8 years old Bush, 3 years old 2. Print out every dog using a for loop (use either regular for loop or for-each loop, your choice). But you may find when you print out, the name and age are not displayed. Why? 3. Fix this problem by implementing the toString method in the Dog class. Dog Class: public class Dog { private String name; private int age; public Dog(String name, int age) { this.name = name; this.age = age; } public void setName(String name) { this.name = name; } }arrow_forwardCreate a new project named lab10. You will be implementing two classes: A SolarSystem class, and a Planet class. The SolarSystem contains Planet objects stored in a vector. A UML diagram for the Solar System and Planet classes The first part you should implement is the Planet class. Don't add the SolarSystem files to the project at the beginning, just work on the Planet class. Test the different overloaded operators as we did during lecture for your Planet class, and then move on to the SolarSystem class. The SolarSystem default constructor should resize the vector to zero. The default constructor values for Planet can be whatever you’d like, but make the mass a very small number, so later on when you're looking for the largest planet, it doesn't use the default Planet value. The addPlanets() method will take a number as an argument for the number of Planets that will be in your SolarSystem. So if you call addPlanets with 5 as an argument, there will be 5 Planets to add to the...arrow_forward
- astfoodStats Assignment Description For this assignment, name your R file fastfoodStats.R For all questions you should load tidyverse, openintro, and lm.beta. You should not need to use any other libraries. suppressPackageStartupMessages(library(tidyverse)) suppressPackageStartupMessages(library(openintro)) suppressPackageStartupMessages(library(lm.beta)) The actual data set is called fastfood. Continue to use %>% for the pipe. CodeGrade does not support the new pipe. Round all float/dbl values to two decimal places. All statistics should be run with variables in the order I state E.g., "Run a regression predicting mileage from mpg, make, and type" would be: lm(mileage ~ mpg + make + type...) To access the fastfood data, run the following: fastfood <- openintro::fastfood Create a correlation matrix for the relations between calories, total_fat, sugar, and calcium for all items at Sonic, Subway, and Taco Bell, omitting missing values with na.omit(). Assign the...arrow_forwardBar Graph, v 1.0 Purpose. The purpose of this lab is to produce a bar graph showing the population growth of a city called Prairieville, California. The bar graph should show the population growth of the city in 20 year increments for the last 100 years. The bar graph should be printed using a loop. The loop can be either a while loop or a for loop. Write a program called cityPopulation Graph.cpp to produce the bar graph. Requirements. 1. Use these population values with their corresponding years: 1922, 2000 people 1942, 5000 people 1962, 6000 people 1982, 9000 people 2002, 14,000 people 2012, 15,000 people 2022, 17,000 people 2. For each year, the program should display the year with a bar consisting of one asterisk for each 1000 people. 3. Each time the loop is performed (that is, each time the loop iterates) one of the year values is displayed with asterisks next to it. That is: 1st time loop is performed/iterates the year 1922 and the correct number of asterisks should be...arrow_forwardIn Python Write a program that reads movie data from a CSV (comma separated values) file and output the data in a formatted table. The program first reads the name of the CSV file from the user. The program then reads the CSV file and outputs the contents according to the following requirements: Each row contains the title, rating, and all showtimes of a unique movie. A space is placed before and after each vertical separator ('|') in each row. Column 1 displays the movie titles and is left justified with a minimum of 44 characters. If the movie title has more than 44 characters, output the first 44 characters only. Column 2 displays the movie ratings and is right justified with a minimum of 5 characters. Column 3 displays all the showtimes of the same movie, separated by a space. Each row of the CSV file contains the showtime, title, and rating of a movie. Assume data of the same movie are grouped in consecutive rows. Ex: If the input of the program is: movies.csv and the contents...arrow_forward
- Create a Point classCreate a Point class as we did in the class. We'll use this to create Point objects that hold x,y coordinates of locations where we'll want to draw. Draw DotsWrite a drawDots(points) function that takes a list points as input and draws a dot on the drawing window for each Point. For example, you should be able to call your function as follows: >>> p = Point(10, 20) >>> q = Point(20, 30) >>> points = [p, q] >>> drawDots(points)arrow_forwardA for construct is used to build a loop that processes a list of elements in programming. To do this, it continues to operate forever as long as there are objects to process. Is this assertion truthful or false? Explain your response.arrow_forwardThe for construct is a loop used to iterate through a sequence of items. So long as there are things to process, it will continue to operate. Could you please tell me whether this statement is true or false?arrow_forward
- For this project, you will import the **time** and **random** modules. You will also install the **matplotlib** package and import from it the **pyplot** module. You will also import the wraps() function from the functools module for use in your decorator.Use the **time** module to write a decorator function named sort_timer that times how many seconds it takes the decorated function to run. Since sort functions don't need to return anything, have the decorator's wrapper function return that elapsed time.To get the current time, call time.perf_counter(). Subtracting the begin time from the end time will give you the elapsed time in seconds.Copy the code for bubble sort and insertion sort from Module 4 and decorate them with sort_timer. def bubble_sort(a_list): """ Sorts a_list in ascending order """ for pass_num in range(len(a_list) - 1): for index in range(len(a_list) - 1 - pass_num): if a_list[index] > a_list[index + 1]:...arrow_forwardWritten in Python with docstring please if applicable Thank youarrow_forwardComputer Science Part C: Interactive Driver Program Write an interactive driver program that creates a Course object (you can decide the name and roster/waitlist sizes). Then, use a loop to interactively allow the user to add students, drop students, or view the course. Display the result (success/failure) of each add/drop.arrow_forward
- Text book imageDatabase System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationText book imageStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONText book imageDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- Text book imageC How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONText book imageDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningText book imageProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education