Tuesday, February 13, 2018

Bytecode

Bytecode is also known as the Intermediate code ,portable code or p-code.It is a code that is not read by the CPU but by the VM.The VM converts the bytecode into the machine language for the platform specific portability and that converted code is understandable by the CPU.
It means the VM converts our byte code according to the type of platform we are using.






The earlier programming language like C,C++ have cross platform compilation issues.Now with the concept of the VM and bytecode , the cross platform portability has been solved.


No comments:

Post a Comment

Hadoop - What is a Job in Hadoop ?

In the field of computer science , a job just means a piece of program and the same rule applies to the Hadoop ecosystem as wel...