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 |
why the wait,notify,notifyall methods are placed in object class?these are the thread concepts why these methods are placed in Object class?
2 Answers Global Logic, Satyam,
What is nested loop? What is dangling else condition in it?
What is the functionability stubs and skeletons?
I have one POJO class(Java bean class), it has two variables for that it has setters and getters. Now i have created two objects for that class and i have set the data for those variables through this two objects. Now question is i want check whether those two objects have same data or not, for this write a program? Thanks, Bose.
Can we have this () and super () together?
How many types of java are there?
Does java isempty check for null?
What is variable and constant explain with example?
What is the arguement of main method?
Can we rethrow the same exception from catch handler?
Java is pass by value or pass by reference? Explain
How do you relate a Interface to a Class? Tell me in Detail?