hi!
if i run same program (say its name is "hello" in file hello.java) with two different "java" commands as:
>java hello rajinder
>java hello prince
where rajinder and prince are command line arguments.
is this multithreading??? ...i mean the two java commands will run the same hello program as two different processes or as the two different threads of same program???
thanks in advance...

