Difference between JDK, JRE, JVM
Answer Posted / siri
JDK or the Java Development Kit is a set of a Java compiler,
a Java interpreter, developer tools, Java API libraries,
documentation which can be used by Java developers to
develop Java-based applications.
JRE or the Java Runtime Environment is a minimum set that
includes a Java interpreter, Java API libraries, Java
browser plug-in, which make up the minimum environment to
execute Java-based applications.
The JVM or Java Virtual Machine is the core of the Java
platform and is a part of both the JDK and JRE that
translates Java bytecodes and executes them as native code
on the client machine.
JDK includes a JRE as as subset.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Should a main method be compulsorily declared in all java classes?
describe synchronization in respect to multithreading? : Java thread
What are the difference between composition and inheritance in java?
What does sizeof return?
What is the difference between hashmap and hashtable in java?
How do I stop concurrentmodificationexception?
Can you tell me range of byte?
What are the advantages of java over C++?
What is string immutability?
Why string is not a wrapper class?
there are N number of matchboxes numbered 1...N.each matchbox contain various number of stick.Two player can alternatevely pick some amount of stick from the higest stick containing box . The player is condidered win if there is no stick after his move.Find the final move so that the move player win. Note:In case the number of stick is equal ,pick the stick from the higest numbered box.
Can we call a non-static method from inside a static method?
What is palindrome in java?
What are the ways in which a thread can enter the waiting state?
Similarity and difference between static block and static method ?