explain about jre and jvm
Answers were Sorted based on User's Feedback
Answer / 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 |
Can we define static methods inside interface?
What is more advisable to create a thread, by implementing a Runnable interface or by extending Thread class?
How do you square a number?
Do you need to import math in java?
What is immutability in java?
What is lambda expression in java?
take an array with -ve and +ve value both.find out the nearest value of 0(zero).if two values are same like(-2 and +2)then extract +2 is nearest of 0(zero).
What is the transient keyword?
How to prevent to create multiple objects of a java class?
Can a method be overloaded based on different return type but same argument type?
Which api is provided by java for operations on set of objects?
What is variable declaration and definition?