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
What does the “static” keyword mean?
What is output buffer?
What are the 3 types of control structures?
What are aggregate functions explain with examples?
What is native method in java?
How do I stop concurrentmodificationexception?
What is the best definition for data?
What is singleton class and how can we make a class singleton?
What are the two main uses of volatile in Java?
What does g mean in regex?
What is a prefix function.write down a code to compute prefix function.
what is the purpose of using rmisecuritymanager in rmi?
What is the use of accept () method in java?
Why chararray() is preferred over string to store the password?
How to convert string to byte array and vice versa?