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.
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