Difference between JDK, JRE, JVM
Answer Posted / alok kumar singh
JDK- JDK stands for java development kit which contain jre
and jvm and other supporting tools for development of programs.
JRE- JRE stands for java runtime environment which provide
the neccesory jar file that compile source code into byte
code. and it contain java virtual machine .
JVM- JVM stands for java virtual machine that convert byte
code into native code . the native code are those code that
are understandable by machine.
| Is This Answer Correct ? | 55 Yes | 21 No |
Post New Answer View All Answers
What is a loop java?
How many decimal places is a double?
What causes memory leaks in java?
Can java object be locked down for exclusive use by a given thread?
What do you know about the garbage collector?
Explain about serializable interface in java?
Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).
Why is the singleton pattern considered to be an anti pattern?
Give an example of call be reference significance.
What are byte codes?
how would you implement a thread pool? : Java thread
why not override thread to make a runnable? : Java thread
What is file in java?
What does it mean that strings are immutable?
What are the important features of Java 11 release?