Explain Java Programming With Example, Evolution Of Java Explain, Why Java Developed,
Get Our Latest Interview Questions: Aptitude, Reasoning, English, GD, HR-PI
Evolution Of Java:
Java Programming developed by: James Gosling, Mike Sheridan, and Patrick Naughton in June 1991. Java was originally designed for handheld devices and set-top boxes.The language was initially called Oak (First Name Of Java) after that it went by the name Green later, and was later renamed Java, from Java coffee,and said to be Java Programming. Java finally released by Sun Microsystems in 1995.
Also in 90's we can say Java is a programming language and built for the age of Internet. Java is available on more device (All Device - Not only in computer ) world-wide than any other language. Today java is not only running in Personal Computers or Mainframe Computers, it is running on devices like: washing machine, oven, mobile phones and many more. Java programs is having a best feature that is compile error-free tend to work. Strong data typing and complete memory management (Garbage Collection)are two features that make this possible. It provides for secure programs that can be executed on the Internet without worry of them infecting your system with some virus or planting a trojan horse.
Java software free to download you can download java software directly from Java Site or by visiting our Others Menu - Softwares.
Example Of Java Program:
class Tech
{
public static void main(String[] args)
{
System.out.println("Hello - Technical Programming!"); //Print Message
}
} // end class Hello
Output: Hello - Technical Programming!