InterviewSolution
Saved Bookmarks
| 1. |
What is Java Virtual Machine and how it is considered in context of Java’s platform independent feature? |
|
Answer» When Java is compiled, it is not compiled into platform specific machine, rather into platform independent byte code. This byte code is distributed over the web and interpreted by virtual Machine (JVM) on whichever platform it is being run. |
|