Java JVM – Why JVM is Not Platform Independent

javajvm

Just curious to know when java is made platform independent then are there any specific reasons JVM is made platform dependent..

Best Answer

The JVM executes Java code, but is written in platform specific languages such as C/C++/ASM etc. The JVM is not written in Java and hence cannot be platform independent.

Related Question