Let's first remember Java Basics.
Terms
Compiling : is the act of turning source code into object code.
Linking : is the act of combining object code with libraries into a raw executable.
Building : is the sequence composed of compiling and linking, with possibly other tasks such as installer creation.
A .java file : contains your Java source code
A .class file : contains the Java bytecode produced by the Java compiler. It runs on the JVM to execute a Java application.
A Jar file : is an archive of otherfile, most likely class files.
JDK : Java Development Kit is a software development environment used for developing Java applications and applets. It includes the Java Runtime Environment (JRE), an interpreter/loader (Java), a compiler (javac), an archiver (jar), a documentation generator (Javadoc) and other tools needed in Java development.
JRE : stands for “Java Runtime Environment” and may also be written as “Java RTE.” The Java Runtime Environment provides the minimum requirements for executing a Java application; it consists of the Java Virtual Machine (JVM), core classes, and supporting files.
JVM : whenever you write java command on the command prompt to run the java class, an instance of JVM is created.