Java was released in 1996 by James Gosling at Sun Microsystems
"Write once, run anywhere"
Based on C/C++
OOP (Object-Oriented Programming )
| Prose form | correct | incorrect |
|---|---|---|
| "XML HTTP request" | XmlHttpRequest | XMLHTTPRequest |
| "new customer ID" | newCustomerId | newCustomerID |
| "inner stopwatch" | innerStopwatch | innerStopWatch |
public class HelloWorld {
public static void main (String[] args) {
String language = "Java";
System.out.println("Hello World");
System.out.println("Happy Coding with " + Language);
}
}