---
title: "What is difference between JDK,JRE and JVM?"  
description: "What is difference between JDK,JRE and JVM?"  
author: "Anonymous User"  
published: 2015-01-22  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/2297/what-is-difference-between-jdk-jre-and-jvm  
category: "oops"  
tags: ["java"]  
reading_time: 1 minute  

---

# What is difference between JDK,JRE and JVM?

### JVM

JVM is an acronym for Java Virtual Machine, it is an abstract machine which provides the runtime environment in which java bytecode can be executed.

JVMs are available for many hardware and software platforms (so JVM is plateform dependent).

### JRE

JRE stands for Java Runtime Environment. It is the implementation of JVM and physically exists.

### JDK

JDK is an acronym for Java Development Kit. It physically exists. It contains JRE + development tools.

## Answers

### Answer by Anonymous User

### JVM

JVM is an acronym for Java Virtual Machine, it is an abstract machine which provides the runtime environment in which java bytecode can be executed.

JVMs are available for many hardware and software platforms (so JVM is plateform dependent).

### JRE

JRE stands for Java Runtime Environment. It is the implementation of JVM and physically exists.

### JDK

JDK is an acronym for Java Development Kit. It physically exists. It contains JRE + development tools.


---

Original Source: https://www.mindstick.com/interview/2297/what-is-difference-between-jdk-jre-and-jvm

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
