Question
In Java please! Use ArrayList, no bufferedReader. You have a file with multiple results from a survey. Write the following methods: - Write a method
In Java please!
Use ArrayList, no bufferedReader.
You have a file with multiple results from a survey. Write the following methods:
- Write a method getStats that takes Strings parameters and returns statistics for name/location/occupation: public SurveyStats getStats(String name, String location, String occupation)
- Write a method SurveyResult that returns an iterator for all survey results.
- Write a method getSurveyResults that accepts integers as parameters and returns an array of the results: public SurveyResult[] getSurveyResults (int index, int count)
- Write a method that accepts array of x and y values and returns the slope of the line: public double calcSlope(Integer[] x, Integer[] y)
- Write a method that accepts an array of readings and returns a slope of best fit line: public double calcSlope(Readings[] surveyReadings)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started