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 |
How do you convert an int to a string in java?
What is the maximum size of hashmap in java?
in a constructor what happen if u call super and this in the same class? i know that it is not possible to call both in the same one? if we call what will happen?
Can java list contain duplicates?
How hashmap works in java?
How do you clear a method in java?
What is default specifier ??? Use of default specifier ???
What does string mean in java?
What are the interfaces defined by Java.lang package?
What is main method?
What is string [] java?
What are the performance implications of interfaces over abstract classes?