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 to fing linkedlist is circular or not?
Does java linked list allow duplicates?
What is java beans?
Explain restrictions for using anonymous inner classes?
Variables used in a switch statement can be used with which datatypes?
give me the answer of this code class A extnds String This code we can write r not in Java? Explain?
If a method is declared as protected, where may the method be accessed?
Can a top level class be private or protected?
What do you mean by constructor?
Can we execute a program without main?
make a method which any number and any type of argument and print sum of that arguments.....
When do we use synchronized blocks and advantages of using synchronized blocks?