Java Basics

How to Write, Compile and Run Your First Java Program?

Before running Java programs you need to install and setup java. For installation guide read: Java Installation: Downloading, Installing and Setting Path How to write and run Java programs? Open notepad and write below program.   class demo {                 public static void main(String…S)                 {                                 System.out.println(“Java Programming”);                 } } Now save the file …

How to Write, Compile and Run Your First Java Program? Read More »

Java Installation: Downloading, Installing and Setting Path

In this tutorial we will learn how to download and install Java and then setting path to make Java programs run. Downloading and Installing To download the latest JDK version visit link: http://www.oracle.com/technetwork/java/javase/downloads/index.html Now click on Download button to go to download page. Select Accept License Agreement and then download appropriate version for your operating system. …

Java Installation: Downloading, Installing and Setting Path Read More »

Features of Java Language

Simple Java derives its syntax from C and object oriented features from C++. If you are good in C and C++ programming then you can learn Java easily. Hence Java is Simple. Secure Java provides its own execution environment and hence do not allow any malicious program to access other parts of computer. Java Virtual …

Features of Java Language Read More »

History of Java Language

The Java language project was started by James Gosling, Mike Sheridan, Chris Warth, Patrick Naughton and Ed Frank in June 1991 at Sun Microsystems. Many more people contributed for this project. They are Bill Joy, Jonathan Payne, Frank Yellin, Arthur van Hoff and Tim Lindholm. The initial aim of the project was to create a …

History of Java Language Read More »