Difference between JDK, JRE, JVM
Answer Posted / ranganathkini
JDK or the Java Development Kit is a set of a Java compiler,
a Java interpreter, developer tools, Java API libraries,
documentation which can be used by Java developers to
develop Java-based applications.
JRE or the Java Runtime Environment is a minimum set that
includes a Java interpreter, Java API libraries, Java
browser plug-in, which make up the minimum environment to
execute Java-based applications.
The JVM or Java Virtual Machine is the core of the Java
platform and is a part of both the JDK and JRE that
translates Java bytecodes and executes them as native code
on the client machine.
JDK includes a JRE as as subset.
| Is This Answer Correct ? | 412 Yes | 48 No |
Post New Answer View All Answers
What is are packages?
How do you read a char in java?
Does java support multiple inheritances?
Is java an ide?
A person says that he compiled a java class successfully without even having a main method in it? Is it possible?
How destructors are defined in java?
What is member in java?
What is the difference between processes and threads?
What is difference between == and === in js?
Can we increase array size dynamically in java?
What is the difference between overriding & overloading?
What is a local, member and a class variable?
How will you initialize an Applet?
Does string isempty check for null?
What is a lock or purpose of locks in java?