Java

Java is one of the most popular and widely used programming languages.
* Java is Object Oriented. 
* Java codes are compiled into bytecode. Then the bytecode runs on Java Virtual Machine (JVM) regardless of the underlying architecture.
* Java syntax is similar to C/C++. 
```
public class Main {
  public static void main(String[] args) {
    System.out.println("Hello World");
  }
}
```