JVM Basics
I am confused about JVM.
My questions are :
Is 1 JRE = 1 JVM ?
Is every invocation of a java program start a separate jvm e.g. 2 instances of notepad show notepad.exe twice in task manager ?
If I start 2 java programs from command line simultaneously
e.g. java cls1 and java cls2
Does it mean there are 2 JVMs running or are both programs running in a single jvm ?
How do I run 2 separate JVMs with the same JRE version on a single box ?
Where can I find more info ?
Whats do I have to d

