What is Java?
Java is an object-oriented programming language developed in the 1990s by a team of programmers led by James Gosling at Sun Microsystems.
The Java programming language is the conventional language of the Java Platform, but it is not its only language.
JAVA code example
x
public class HelloWorld {
public static void main(String[ ] args) {
System.out.println("Hello World!");
}
}
public static void main(String[ ] args) {
System.out.println("Hello World!");
}
}