JAVA is high level programming language create by Jame'e Gosling in "Sun MicroSystem" Since 1991 by name Oak that rename Java in 1995. Java is Pure Object Oriented Programming Language. Actually java is not like all programming language that execute in such system that they compiled | interpret.
/* - basic staturcture - java.lang default package */ package packagename; import java.lang.*; class ClassName { public static void main(String args[]) { System.out.println(" welcome in Java basic structure code "); } }
welcome in Java basic structure code
you are diractly download JDK by **ORACLE** offical website that is https://www.oracle.com/in/java/technologies/downloads/
it is group of kit for developement the java program & testing.
Primary compile the java "source_code" that return bytecode that bytecode same as inside classname mean number of class equal to return number of bytecode
Secondary interpret the java "btye_Code" that execute in **JRE** by **JVM**.
For explore structure of bytecode use java disassembler
it is the environment that time java is execute the bytecode and give output.