Saturday, 12 May 2012

First Week Of Training (May 9' 2012-May 11' 2012)

May 9'2012 -
Today was the first day of my 6 week Industrial Training. I had enrolled for the Core Java course at HCL CDC (Career Development Center) Chandigarh. We were introduced to our technical trainer Ms.Upasana Khare , our technical head Ms.Cheena and center head Mr.Ashish Koul. The first class started with an introductory session. We were told about the rules and regulations and a pre-plan of how the training will proceed.

May 10'2012 -
On the second day, our C++ concepts were brushed up and tested. We went through Polymorphism, Encapsulation, Inheritance, Abstraction, Classes, Objects and all the OOP concepts. After this, we were told about the Birth of Java and about the rest of its history and evolution. The class left me in anticipation and curiosity to learn more about this programming language.

May 11'2012 -
We were already told about Java's history and evolution. Today, i was taught the syntax for a basic java program and about java tokens in detail. I made my first program in java today. Initially we used Notepad and Command Prompt i.e without an Integrated Development Environment (IDE) to run the program, then we used Netbeans 7.1.2 i.e in an IDE.

Syntax for a simple java program:



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

OUTPUT:-

Hello World