Difference between JDK, JRE, JVM
Answer Posted / banti prajapati
Java Virtual Machine (JVM) is an abstract computing machine. Java Runtime Environment (JRE) is an implementation of the JVM. Java Development Kit (JDK) contains JRE along with various development tools like Java libraries, Java source compilers, Java debuggers, bundling and deployment tools.
JVM becomes an instance of JRE at runtime of a java program. It is widely known as a runtime interpreter. The Java virtual machine (JVM) is the cornerstone on top of which the Java technology is built upon. It is the component of the Java technology responsible for its hardware and platform independence. JVM largely helps in the abstraction of inner implementation from the programmers who make use of libraries for their programmes from JDK.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the use of static class?
What is the length of a string?
How to create an interface?
How do you do descending order in java?
Is java a compiler?
What are the different types of garbage collectors in java?
What is the requirement of thread in java?
I want to re-reach and use an object once it has been garbage collected. How it's possible?
What is super keyword explain with example?
Why Java is not pure Object Oriented language?
What are the changes in java.io in java 8 ?
What is fundamental datatype?
What is the use of protected in java?
What is final int?
What is a null point?