Tuesday, January 19, 2021

Introduction to java 0.1

                                                            Introduction To Java


 Java was developed by Sun Microsystems (which is now the subsidiary of Oracle) in the year 1995. James Gosling is known as the father of Java. Before Java, its name was Oak. Since Oak was already a registered company, so James Gosling and his team changed the Oak name to Java.


Java is an object-oriented programming language. Everything in Java is an object. Object-oriented means we organize our software as a combination of different types of objects that incorporates both data and behavior.

Object-oriented programming (OOPs) is a methodology that simplifies software development and maintenance by providing some rules.

Let start write our first program.

// i am going to create my firs java program
public class Hello{
    public static void main(String []args) {
        System.out.println("Hello");
        
    }
}

Output:-

Hello



































No comments:

Post a Comment