What are the input and output of a Java compiler?
What is the command to compile a Java program?
javac
command. What is the command to run a Java program?
What is the JVM?
What is the Java source filename extension?
The Java source file name must match the public class name in the program. Java source code files must end with the .java extension.
What is the Java byte code filename extension?
Every class is compiled into a byte code file that has the same name as the class. The file name ends with the .class extension.