Question: - We can create CSV files through Excel and Notepad, as seen in class. CSV's are important, they are essential to many program inputs as

- We can create CSV files through Excel and Notepad, as seen in class. CSV's are important, they are essential to many program inputs as well as means to carry and examine data. So to practice this skill we'll write the following program. - Use this function: -f(y)=X2+2x+1 - Write a program that outputs the x and y values separated by commas for some range. - Create a header label x and y, and the function as a string - Have a parameter for range of x and increment of x - Open the newly created file, and plot it in Excel - Write a method that reads a csv file - Parse the x's and y's into some java object that you create - Hints: - Write a program that does a loop from say 1-100. Then, plug 1 into the x of your function and save the y value somewhere or just sys out it. Ex:1,22,53,9 - Copy and paste all of those values into excel
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
