What is the difference between JDK and JRE?
What are their roles and when should I use one or the other?
JVM (Java Virtual Machine) is an abstract machine. It is a specification that provides runtime environment in which java bytecode can be executed.
JRE is an acronym for Java Runtime Environment.It is used to provide runtime environment.It is the implementation of JVM.It physically exists.It contains set of libraries + other files that JVM uses at runtime
JDK is an acronym for Java Development Kit.It physically exists.It contains JRE + development tools