Which command from the JDK should be used to compile the following source code contained in a file named Main.java?
public class Main { public static void main(String[] args) { System.out.println("Good luck!"); } }
Select the one correct answer.
(d)
The compiler supplied with the JDK is named javac.
The names of the source files to be compiled are listed on the command line after the command javac.