Chain the constructors to create objects to read from a file named “in” and to write to a file named “out” DRAG DROPChain the constructors to create objects to read from a file named "in" and to write to a file named "out" DRAG DROP Chain the constructors to create objects to read from a file named “in” and to write to a file named “out” Show Hint Next question →
Hammedm reader = new BufferedReader(new FileReader(“in”)); writer = new PrintWriter(new BufferedWriter(new FileWriter(“out”))); Reply
reader = new BufferedReader(new FileReader(“in”));
writer = new PrintWriter(new BufferedWriter(new FileWriter(“out”)));