Question: Java language Write down the output generated (in file f2) by the code below when invoked by the command java prog f1 f2: import java.util.*;
Java language

Write down the output generated (in file f2) by the code below when invoked by the command "java prog f1 f2": import java.util.*; import java.io.*; public class prog{public static void main(String []args){File inF = new File(args[0]); try{Scanner f = new Scanner(inF); Writer wr = new FileWriter(args[1]); int n=f.nextlnt(); int m=f.nextlnt(); for(int i=0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
