Reputation: 8903
I am baffled with the statement/s which I have often read:
A Java program runs inside (or by) JVM. The doubt which I have is, how one Java program is run by another program i.e. by JVM.
How can one software read other software?
This might seem very trivial or no sense question, however the more I think about this, the more doubt I get "how one software can run other software".
Any help to understand this, greatly appreciated.
Upvotes: 0
Views: 49
Reputation: 533442
The doubt which I have is, how one Java program is run by another program i.e. by JVM.
The JVM is a program. It
The code can be compiled to native code which the JVM calls to speed up execution.
Upvotes: 2