0 votes
in JAVA by
What is bytecode in java?

1 Answer

0 votes
by

Bytecode is the compiled format for Java programs. Once a Java program has been converted to bytecode, it can be transferred across a network and executed by Java Virtual Machine (JVM). Bytecode files generally have a .class extension.

...