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

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 11:00, babbybronx
Lisa’s company, abc ltd., lost its biggest client and is now facing a financial crunch. most of her colleagues have resigned, but lisa decides to stay with the company and assist the management in overcoming the financial situation. which quality is lisa demonstrating? a. self-management b. cooperativeness c. responsibility d. loyalty
Answers: 2
image
Computers and Technology, 22.06.2019 21:40, tdahna0403
Develop a function to create a document in the mongodb database “city” in the collection “inspections.” be sure it can handle error conditions gracefully. a. input -> argument to function will be set of key/value pairs in the data type acceptable to the mongodb driver insert api call b. return -> true if successful insert else false (require a screenshot)
Answers: 2
image
Computers and Technology, 23.06.2019 22:30, ghari112345
Jamie has to enter the names, employee id’s, and income of a group of employees into a worksheet. which option will jamie use to describe the data
Answers: 3
image
Computers and Technology, 24.06.2019 00:30, petergriffin6772
Which boolean operator enables you to exclude a search term? a} not b} and c} or d} plus
Answers: 1
You know the right answer?
Java program with comments in main and in each method. A city is divided into 100 neighborhoods, ea...

Questions in other subjects: