Computer Science, asked by vipuldudi25, 1 year ago

What is the difference between Java compilation process and ordinary compilation process

Answers

Answered by Anonymous
10
In ordinary compilation the source code is directly converted into machine or object code using an interpreter or a compiler.

In Java compilation into an the source code is first converted into an intermediate code called the byte code.


Hope it helps you!
Answered by saitejassb
1
In Java, compilation of each and every code (error free codes) leads to creation of one byte code file. This byte file runs through Java virtual machine (JVM) rather than Computer's processor. This makes it Platform independent as well as different from ordinary compilation. Since this byte code files are only machine readable, it serves Security at higher extent.
Similar questions