Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. A private class method named findMinimum that accepts the three instances of Weight as the parameters and returns the weight that is the smallest.

image text in transcribedimage text in transcribed

1. A private class method named findMinimum that accepts the three instances of Weight as the parameters and returns the weight that is the smallest. The display will include the values of the three weights, and which one is the minimum. Use the toString() for the display. 2. A private class method named findMaximum that accepts the three instances of Weight as the parameters and returns the weight that is the highest. The display will include the values of the three weights, and which one is the maximum. Use the toString() for the display. 3. A private class method named findAverage that accepts the three instances of Weight as the parameters and returns the average weight. The display will include the values of the three weights, and the value for the average. Use the toString() for the display. Be sure to follow good programming style, which means making all instance variables private, naming all constants, and avoiding the duplication of code. You can create three instances of Weight class inside the main method using the constructor of the Weight class. You can name the three instances of the Weight class as weight1, weight2 and weight3. Next, call the findMinimum, findMaximum and findAverage methods and print out the values. As the input values are hard coded within the program, you can change these values within the code to execute different test runs. Execute three test runs of your program and include them in the test case. Each test run should display the minimum, maximum and the average of the weights. A requirement such as the above, can be accomplished in more than one way. It may feel that the requirements above are very prescriptive, as we ask you to name the variable, method, and class in a certain way. We ask you to do so for the sake of consistency. The assignment above can be accomplished using the guidelines above. If you think that there is a compelling reason to create additional methods and variables, please email your professor with your reason much before the assignment deadline. Style and Documentation: Make sure your Java program is using the recommended style such as: Javadoc comment with your name as author, date, and brief purpose of the program Comments for variables and blocks of code to describe major functionality Meaningful variable names and prompts Class names are written in upper CamelCase Constants are written in All Capitals Use proper spacing and empty lines to make code human readable Submission Requirements: Deliverables include Java program (.java) and a single Word (or PDF) document. The word (or PDF) document should include screen captures showing the successful compiling and running of each of the test scenario. Test scenarios should include all required functionality of the program. Each screen capture should be properly labeled clearly indicating what the screen capture represents. The submiss requires uploading a single zip 1) The source code of Weight.java (do not include the class file) 2) The source code of Project1.java (do not include the class file) 3) A single document which can be either of the type Microsoft Word document, or a PDF. In this single document, include the test cases in a tabular format and the screenshot of the test runs for the test cases. You can copy and paste the screen shots in this document. Do not submit the screenshots separately but copy and paste in this document and finally submit a single document. Use the tabular format like the one shown below for the test cases. Test Case Input Values Expected Actual Result Did Test Pass Any Number Output of Output or Fail Comments Values Test 1 Test 1 Screen Shot(s) Test 2 Test 2 Screen Shot(s) And so on... Test 3 Test 3 Screen Shot(s) Grading Rubric Criteria Level 3 Level 2 Weight class (31-40 points) (21-30 points) Implemented the Not implemented some specifications and logic of the logic and components specification components Project class (31-40 points) (21-30 points) Implemented the Not implemented some specifications and logic of the logic and components specification components Test cases (11-20 points) (6 - 10 points) Included the test cases Not included some of with the screen shot(s) the test cases using the using the tabular format screen shot(s) using the tabular format Level 1 (0-20 points) Not implemented most of the logic and specification components (0-20 points) Not implemented most of the logic and specification components (0 - 5 points) Not included most of the test cases with the screen shot(s)

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

More Books

Students also viewed these Databases questions

Question

=+ Of the HR issues mentioned in the case,

Answered: 1 week ago