And for my last question:
even after I have installed Java SE 6 Update 2 on my linux machine, I get the answer 1.4.2 when I type 'java -version' in my terminal.
And then, I try to compile and run the following program:
(start)
/* This is my first Java applicaiton */
class Application
{
public static void main(String args[])
{
System.out.println("This is my First java applicaiton");
}
}
(end)
it compiles well without an error or warning. And when I run it, it runs well, but does not produce any output what so ever. Why is this ? Can you tell me ?