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
Differences between C and Java?
What is Gang of four design patterns
What are checked exceptions?
How to sort numbers in java without array?
Is java based on c?
Give the hierarchy of inputstream and outputstream classes.
Which collection is thread safe in java?
Tell me the Importent classes in net package?
What is the symbol for space?
What is bubble sort in java?
Does java linked list allow duplicates?
How to sort list of list in java?
What is Java Shutdown Hook?
Write an algorithm program in java for the following question.. 1) S is a set of integers.X is an integer obtained by sum of two digits in S. Write logic for whether or not the X is from the S. The time of algorithm should not exceed o(n logn).
Explain aggregation in java?