Wednesday, 25 June 2014

Compile/Execute Java Programs | Vandna Sharma: Another name of Java

Prerequisites

Prerequisites JAVA |
Vandna Sharma: Another Name of Java
Before you start doing practice with various types of examples given in this tutorial by Vandna Sharma, I'm making an assumption that you are already aware about JAVA PREREQUISITES

Java has evolved to be the most predominant and popular general purpose programming language of the current age. Java is a simple, portable, distributed, robust, secure, dynamic, architecture neutral, object oriented programming language. It was developed by Sun Microsystems

This technology allows the software designed and developed once for an idealized ‘virtual machine’ and run on various computing platforms. For More Information please go with this link [Click Here For More Details on Perrequisites]


Example:
  1. public class MyFirstJavaProgram { 
  2.  public static void main(String []args) {
  3.  System.out.println("Welcome to the world of VandnaSharma"); 
  4.  }