Java Tutorial

What is Java?

Java is a programming language and it is a platform independent. It was first released by Sun MicroSystems in 1995. Java is a high-level, robust object-oriented, and secure programming language.


Users of Java.

1. It is used for mobile applications.

2. Desktop Application.

3. Web Applications.

4. Games 

5. Database Connection and many more.


Note: 

1. It is one of the most popular programming languages in the world.

2. It is easy to learn and very simple to use.

3. It is secure, powerful, and fast.


Hello World in Java

Java

public class MyClass {
    public static void main(String[] args) {

        System.out.println("Hello World");
    }

}

Output:

Hello World

No comments:

Post a Comment