prompt> java MyJavaProgram cat 27 'Java is great!'has three command line arguments.
System.out.print("Enter a sentence : "); mySentence = keyboard.next(); System.out.println("The original is : " + mySentence); mySentence.toUpperCase(); System.out.println("The same one is : " + mySentence); mySentence = mySentence.toUpperCase(); System.out.println("The raised is : " + mySentence);
String one = "aaa"; String two = "bbb"; String three; one = one + one; three = two; two = three + one; System.out.println(one + two + three);
if (aString == anotherString) {and
if (aString.equals(anotherString)) {