Skip to main content

Posts

Showing posts from May, 2014

Introduction to Java Programming

First Program in Java-Hello world program. Refers to the most basic program that can be written and run in any language. STEP 1 Setup the necessary tools. STEP 2 Launch a new project STEP 3 Choose Java and then Java Applications under the project. Click Next STEP 4 Type the project name as "Helloworld" without the quotes. Specify the project Location. Click Finish The next window will be as follow. STEP 5 Add the code as shown below :         STEP 6 Right click on the file and choose Run File( shift+F6) as shown below. The output Was that not simple?. On the next post I will explain on the different parts of the code and their meaning. Hope you have learned something. Feel free to comment and ask any question on the above. 

Java (Programming Language)

JAVA is a computer programming language that is concurrent, class-based, object oriented and specifically designed to have as few implementations dependencies as possible. It is intended to let application developers "write once, run anywhere" (WORA), meaning that code that runs on one platform does not need to be recompiled to run on another. java applications are typically compiled to... Read More