subject

Java program with comments in main and in each method. A city is divided into 100 neighborhoods, each with a unique name. Every three months, each neighborhood reports the prices of four houses sold; not all neighborhoods have sales to report every three months. A file contains the sales data in the format:
neighborhood price price price price
For example, Midtown 23055 10000 19000 32009 (Note: prices are in whole dollars)
Design a Java class with a main method that does the following:
Invokes method readData which reads the data from the input file, stores values into arrays and returns the number of records read in.
Invokes method modifyData, passing an array of double as the parameter. The method modifies the value in the array based on rules specified below.
Invokes method sortArrays to parallel sort the arrays of double and String. The method should be invoked only once.
Prints to a file the neighborhood name and average of the three neighborhoods that have the highest average prices, in descending order (highest average price first), and the three neighborhoods that have the lowest average prices in ascending order (lowest average price first). The neighborhood should be left adjusted, the price right adjusted with two decimal places and the header row should be included. The output should be in the form:
Neighborhood Avg Price
Eastside 108162.50
Greenfields 67576.06
Southside 60967.78
Neighborhood Avg Price
Chelsea 47663.28
Westside 48830.93
Uptown 57200.00
Method Details:
1. readData:
2. Receives an array of String and array of double
3. Reads the neighborhood name as String and the four prices as integer from a file (name of your choice)
4. Stores the neighborhood name in the array of String and the average of the 4 prices in the array of double.
5. Returns the number of neighborhood records read in as an integer
6. modifyData:
7. Receives an array of double as the parameter and an integer representing the number of records read in by readData
8. Computes the overall average home price for all homes read in by readData (the average of the averages)
9. For the number of records read in from the input file, increases the average price for each neighborhood by 10% if the average home price for that neighborhood is below the overall average home price homes sold and decreases the average price for each neighborhood by 15% if the average home price for that neighborhood is above the overall average.
10. sortArrays:
11. Receives the arrays of double and String and an integer representing the number of records read in by readData as parameters
12. Parallel sorts the arrays, only for the number of records read in by readData, with the primary sort on the array of double in descending order.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 10:30
Aconstruction company is creating a powerpoint presentation describing how they calculate costs during each construction step. they plan to email this presentation to clients. the individual clients will be watching the presentation slide show on their own personal computers. what is the most important formatting step the company should take to make the text readable and pleasing to the eye?
Answers: 2
question
Computers and Technology, 23.06.2019 19:00
Acompany is hiring professionals for web designing. the firm is small with few resources. they want employees who possess problem-solving skills and can independently carry out responsibilities. which kind of employee should they select?
Answers: 2
question
Computers and Technology, 23.06.2019 21:30
Examine the list below. which factors positively affect lifetime income? check all that apply.
Answers: 1
question
Computers and Technology, 24.06.2019 07:30
John recently worked on a project about various programming languages. he learned that though procedural language programs are useful, they have disadvantages too. what is a disadvantage of programs written in procedural languages? a. programs do not represent data complexity. b. programs take more time to execute. c. programs are prone to security threats. d. programs do not interface with multiple platforms.
Answers: 3
You know the right answer?
Java program with comments in main and in each method. A city is divided into 100 neighborhoods, ea...
Questions
question
Mathematics, 03.04.2021 08:40
question
Arts, 03.04.2021 08:40
question
Business, 03.04.2021 08:40
question
English, 03.04.2021 08:40
question
English, 03.04.2021 08:40
Questions on the website: 13722360