top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is JDK and why do we need it?

+1 vote
284 views
What is JDK and why do we need it?
posted Aug 12, 2016 by Ajinkya Dev

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The Java Development Kit (JDK) is a software development environment used for developing Java applications and applets. It includes the Java Runtime Environment (JRE), an interpreter/loader (java), a compiler (javac), an archiver (jar), a documentation generator (javadoc) and other tools needed in Java development.

JVM (Java Virtual Machine) is an abstract machine. It is a specification that provides runtime environment in which java bytecode can be executed. JVMs are available for many hardware and software platforms. JVM, JRE and JDK are platform dependent because configuration of each OS differs

answer Aug 12, 2016 by Karthick.c
...