Computer Science, asked by Harshi666, 1 year ago

define byte code clearly

Answers

Answered by brianydon
3
Bytecode is computer object code that is processed by a program, usually referred to as a virtual machine, rather than by the "real" computer machine, the hardware processor. ... The best-known language today that uses the bytecode and virtual machine approach is Java.
Answered by cyrusbishop
0

Answer:

Byte code in Java is a machine instruction for a Java processor chip called the Java virtual machine.

Explanation:

The interpreter reads the byte code and translates it into the native language of the host machine on the fly.

Since the byte code is completely platform independent, only the interpreter and a few native libraries need to be ported to get Java to run on a new computer or operating system.

Similar questions