CS 230204Spring 2015 Complete the following code to create a
CS 2302/04—Spring 2015
Complete the following code to create a File object for the file named grades.txt in the project src folder.
Solution
Answer:
File grades = new File(\"grades.txt\");
This statemnet will create a file object with the file name grades.txt.

