Question: Ajar file is a Java Archive file. We sometimes provide jar files programming assignments. Some jar files can be executed as programs, while others will

Ajar file is a Java Archive file. We sometimes provide jar files programming assignments. Some jar files can be executed as programs, while others will be included as libraries to help build other java applications. Suppose you want to run an executable jar file named myprogram.jar and you are told that the program requires two command-line arguments. Given the command line arguments are arg1 and arg2, which of the following commands is correct? Hint: Google how do I pass parameters to a jar file at time of execution. java -jar(myprogram.jar, argi, arg2) java myprogram.jar argi arg2 java -r myprogram.jar argi arg2 java -jar myprogram.jar argi arg2 java -runjar myprogram.jar argi arg2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
