0% found this document useful (0 votes)
9 views1 page

Understanding Java Byte Code and JVM

Uploaded by

ou638009
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Understanding Java Byte Code and JVM

Uploaded by

ou638009
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Byte code of Java and JVM

Byte code:

 Byte code cab be defined as an intermediate code generated by the compiler after the
compilation of source code (java program).
 This intermediate code makes java a platform-independent language

Working of Byte code:

 Compiler converts the source code or the java program into the Byte code (or machine
code), and secondly, the interpreter executes the byte code on the system.
 The interpreter can also be called JVM (Java Virtual Machine).
 The byte code is the common piece between the complier (which creates it) and the
Interpreter (which runs it).

You might also like