Answer Posted / devender/mimshad
jre->jre stand for java run time environment it is use to
run .class file which is generated after compilation.And it
must be present if any body want to run any java programe
in his machine.
Jvm->Java virtual machine.it is abstact computer on which
all java programe run it is consider to be power of java.
It is JVM that makes java a platform independent language.
Each operating system has its own JVM which enables it to
run Java programs irrespective of its development machine.
| Is This Answer Correct ? | 22 Yes | 5 No |
Post New Answer View All Answers
What 5 doubled?
What is difference between iterator access and index access?
Does sprintf add a null terminator?
What is the finalize method do?
What is final method?
What is the range of a character variable?
What is type conversion in java?
Why java is a platform independent? Explain
What does yield method of the thread class do?
What are the types of strings?
How to check if a list is sorted in java?
Why is singleton instance static?
How many bits is a boolean?
Can we override constructors in java?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?