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 23:00
Which factor is the most important when choosing a website host? whether customers will make secure transactions the number of email accounts provided the purpose of the website the quality of the host control panel
Answers: 3
question
Computers and Technology, 23.06.2019 01:30
Negative methods of behavior correction include all but this: sarcasm verbal abuse setting an example for proper behavior humiliation
Answers: 1
question
Computers and Technology, 23.06.2019 14:30
Select the correct answer. which step can possibly increase the severity of an incident? a. separating sensitive data from non-sensitive data b. immediately spreading the news about the incident response plan c. installing new hard disks d. increasing access controls
Answers: 2
question
Computers and Technology, 24.06.2019 03:30
Auniform resource locator (url) is a formatted string of text that web browsers, email applications, and other software programs use to identify a particular resource on the internet. true false
Answers: 2
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, 21.11.2019 19:31
question
Mathematics, 21.11.2019 19:31