Skip to main content

Posts

Showing posts with the label What Is JDK?

What Is Java Development Kit (JDK)?

JDK stands for “Java Development Kit” and it is used to build and develop the java programs. Java Development Kit (JDK) internally contains JRE, compiler, debugger and all set of library and files to build the java programs. Without JDK, we can’t build and compile any java programs. Java Development Kit (JDK) provides all the tools, executable files and binaries required to compile, debug and execute a Java Program. The execution part is handled by JVM to provide machine independence. I hope you are enjoying with this post! Please share with you friends! Thank you!!

Java 10 - JVM, JRE, JDK and JIT Compiler

What Is JVM ? JVM stands for “ Java Virtual Machine ” and it is platform dependent and heart of java programming language. Java Virtual Machine (JVM) provides run-time environment and also responsible for converting byte code into machine readable code. Java Virtual Machine (JVM) performs following main tasks - 1.       Loads code 2.       Verifies code 3.       Executes code 4.       Provides runtime environment Two Types of JVMs is - Java HotSpot Client VM and Java Hotspot Server VM. What Is JDK? JDK stands for “Java Development Kit” and it is used to build and develop the java programs. Java Development Kit (JDK) internally contains JRE, compiler, debugger and all set of library and files to build the java programs. Without JDK, we can’t build and compile any java programs. Java Development Kit (JDK) provides all the tools, executable files an...