Friday, January 13, 2012

Java

Speaking personally as a java developer, java is a very versatile cross-platform programming language. It is designed as a compile once, run anywhere code language, meaning it can run on any type of computer(Windows7, Linux Distros, OSX) without revision or rewriting. It is mainly found on client-server web applications. It is also one of the most popular languages today. It is also an object oriented language, developed by James Gosling and Sun Microsystems.
Link 1
Link 2


An example of the text present in a program would be something similar to this:
class ThisIsAwesome {

public static void main(String[] args) {

 System.out.println("This is awesome"); }

}

(Result: It prints "This is awesome")

No comments:

Post a Comment

Followers