Java as a Programming Language

Java as a Programming Language

Previous Home Next

 

Java is a third generation  Programming Language which provide first time API for internet application .

Java is a high level Programming Language like C++ etc. Java supports object oriented (OOP) concepts.

Java is a Programming Language which provide very first API for internet application .

Through java we can make web base application. Java is third generation programming language .
Java uses an complier which compile Java Source code into byte code .This byte code will executed by interpreter .

java has following features:
"Java is Simple, Portable ,Object Oriented , Interpreted ,Distributed, High Performance,Robust , Multithreaded ,Secure , Dynamic ,Architecture Neutral Programming Language which provide build-in internet base API.”

 Java allow programmer to write a program farm free. This mean a programmer can write code into a single line or different lines .
 

Java allow programmer to write program in a single line or in format. Programmer can use own format to write a programe.
 It is better to write program into format so that it will easy to review and understudy code.

 
public class R4RFirstJava 
{
public static void main(String[] args)
{
System.out.println("Hello R4R");
}
}
Or
public class R4RFirstJava
{
public static void main(String[] args)
{
System.out.println("Hello R4R");
}
}

Hello R4R
Previous Home Next