Core Java Interview Question's Answers - 1
How to write java documentation comment? /** * java statement * java statement */ What is JDK, JRE, JVM and JIT? JVM JVM stands for java virtual machine. It's basic functionality is to convert the byte code to machine code. Due to jvm and byte code java is platform independent. JRE JRE stands for java runtime environment. It contains libraries like networking, language fundamentals, threading, IO, Date and Time, JDBC, Security, Collections, Math, Reflections. It is super set of of jvm and hence it contains libraries and jvm as well. It provides an environment to run the java code at run-time. JDK JDK stands for java development kit. It is a complete package which includes each and everything required for java application development. JDK contains tools for java application development like java interpreter, javac compiler , Javadoc documentation tool, jar tools for jar file execution, javap tool for showing the profile o
Comments
Post a Comment
Thank You for reading our post.
Your comment or feedback encourages us to improve the quality of content.
Don't forget to follow/subscribe to get the latest post.