Here are 10 essential multiple-choice questions on Java File Writing, covering key concepts.
Question 4
What is the output of this code?
FileWriter fw = new FileWriter("data.txt");
fw.write("Test");
fw.close();
There are 10 questions to complete.
Quiz about Java File Writing