Tuesday, 1 July 2014

What is Java

Java is a programming language and a platform.
Platform Any hardware or software environment in which a program runs, known as a platform. Since Java has its own Runtime Environment (JRE) and API, it is called platform.

Java Example


  1. class Simple{
  2.     public static void main(String args[]){
  3.      System.out.println(“Hello Java”);
  4.     }
  5. }

No comments:

Post a Comment