This tutorial is intended for the beginners to the programming language Java. This tutorial is split into multiple sessions. At the end of the tutorials, you will be having a basic understanding of Java programming.
Java is one of the most popular programming languages, developed by Sun Microsystems in the year 1991. It is initially named as “Oak” by James Gosling, one of the inventors of the Java programming language. In 1995, “Oak” is renamed to “Java” because the name “Oak” did not survive legal registration.
Java is a very powerful language and can meet all the requirements needed for the modern programming world. At the same time, it is very simple.
Some of the main advantages of Java are
1. It is object oriented
2. It is platform independent
3. It is secure
4. It is simple
Let’s look into each of these features into more detail in the coming chapters. Java helps to solve complex business requirements easily because it is object oriented. In the next chapter,we will be covering the basic Object Oriented Programming (OOP) principles which will be a very good foundation for you to start with Java.
Ma'am, its not fully true that java does not support operator overloading
in case Systsem.out.println(a+"Is The fact"); '+' is used as both addition and concatenation operation which itself is a operator overloading .
Post Your Comment
