Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

JAVA - TUTORIAL

Copyright tutorials point.com

http://www.tutorialspoint.com/java/index.htm

PDF Version

Quick Guide

Resources

Job Search

Discussion

Java is a high-level programming language originally developed by Sun Microsyst ems and released in
1995. Java runs on a variet y of plat forms, such as Windows, Mac OS, and t he various versions of UNIX.
This t ut orial gives a complet e underst anding of Java.
This reference will t ake you t hrough simple and pract ical approach while learning Java Programming
language.

AUDIENCE
This reference has been prepared for t he beginners t o help t hem underst and t he basic t o advanced
concept s relat ed t o Java Programming language.

PREREQUISITES
Before you st art doing pract ice wit h various t ypes of examples given in t his reference, I'm making an
assumpt ion t hat you are already aware about what is a comput er program and what is a comput er
programming language?

COMPILE/EXECUTE JAVA PROGRAMS


For most of t he examples given in t his t ut orial you will find T ry it opt ion, so just make use of it and
enjoy your learning.
Try following example using T ry it opt ion available at t he t op right corner of t he below sample code
box:
public class MyFirstJavaProgram {
public static void main(String []args) {
System.out.println("Hello World");
}
}

You might also like