Difference between JVM and JRE?
Answers were Sorted based on User's Feedback
Answer / manasa
JVM is a java virtual machine.... which is a compiler and
it converts bytecode to its original form which is given by
us......
JRE is a software where it supports to execute our
programs....
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / shylaja adam
Jvm is Java virtual machine. It works like both compiler and interpreter for the java programs. where as Jre is Java runtime environmet. As the name implies It provides supoort for java programs by providing runtime environment that is needed to execute.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / praveen
JVM --- JVM converts byte code into machine(processor)
understandable language.
----We import some classes in java program.
----JVM execute those class methods in java library and
place the result into the program.
JRE = JVM + java library
| Is This Answer Correct ? | 4 Yes | 0 No |
what are the states associated in the thread? : Java thread
When a thread is executing synchronized methods , then is it possible to execute other synchronized methods simultaneously by other threads?
What types of inheritance does Java support?
Does treeset use compareto?
What is the purpose of garbage collection in java?
Define interface in java?
What is static data type in java?
Is java util list serializable?
What is the declaration statement?
what is method reference in java 8?
Is oracle java 11 free?
Explain java code for recursive solution's base case?