Java Lesson -2
First Java Program: Let us look at a simple code that would print the words Hello World . public class MyFirstJavaProgram { /* This is my first java program. * This will print 'Hello World' as the output */ public static void main ( String [] args ){ System . out . println ( "Hello World" ); // prints Hello World } } About Java programs, it is very important to keep in mind the following points. Case Sensitivity - Java is case sensitive which means identifier Hello and hello would have different meaning in Java. Class Names - For all class names the first letter should be in Upper Case. If several words are used to form a name of the class each inner words first letter should be in Upper Case. Example class ...