InterviewSolution
| 1. |
Role of JDK, JRE and JVM |
|
Answer» Details about JDK, JRE and JVM in Java are given as follows: Java Development Kit (JDK)The Java SE, Jakarta EE or the Java Me are platforms whose implementation is done by the Java Development Kit. The basic contents of the JDK are resources for a Java application and the JVM. A LIST of some of the JDK programming tools is given as follows:
The Java Runtime Environment consists of the Java VIRTUAL Machine, supporting files and core classes. This is basically the minimum requirements to execute a Java application. The JRE is actually a component of the JDK but it can be downloaded separately from the rest. Some of the components of the JRE are given as follows:
The Java Virtual Machine allows a computer to run Java programs. It can also run programs in other languages that are beforehand compiled to Java bytecode. The JVM is a virtual machine. Some of the OPERATIONS performed by the JVM are given as follows:
|
|