It\'s my understanding that the Java compiler produces \"byte code\", not \"object code\". First of all, is this correct?
Also, that\'s just what my book says, I was
Java is platform independent. When you compile Java source code it is converted to byte code and when the application is run the JRE on the client machine executes the byte code.