Difference between JDK, JRE, JVM
Answer Posted / p.l.n.kumar
JDK is a software bundle consists of binary files such as
(javac,java,javadoc,jdb,javap,rmic....),java library files
(both old and new)and some header files. Development
environment requires this software.
JRE is also a software bundle same as JDK excluded with
some binary files( especially compiler - javac and
rmic ).Required to run applications of production
environment ( on client host system ).
JVM is available in both JDK and JRE. Java.exe file is used
to initiate VM process.The default heap size is 2MB and the
Max.heap size is 64MB.VM comes in two flavours...
-Hotspot client VM
-Hotspot server VM
| Is This Answer Correct ? | 85 Yes | 50 No |
Post New Answer View All Answers
When should the method invokelater() be used?
What is public static void main?
What are basic data types?
What is string intern in java?
Why there are some null interface in JAVA? What does it mean? Give some null interface in JAVA?
Difference between error and exception
Write a program to show whether a graph is a tree or not using adjacency matrix.
What is java autoboxing?
what methods would you overwrite in java.lang.object class?
Why do we create public static method in java?
What is the Scope of Static Variable?
How to stop a thread in java? Explain about sleep () method in a thread?
What is finalize method?
Can we have static methods in an interface?
Can we declare a static variable inside a method?