Answers for "bytecode"

6

what is bytecode in java

When a javac compiler compiler compiles a class it generates .class file. 
This .class file contains set of
instructions called byte code. Byte code is a machine independent language 
and contains set of
instructions which are to be executed only by JVM. JVM can understand 
this byte codes.
Posted by: Guest on November-30-2020
6

byte code

Bytecode is program code that has been compiled from source code into low-level code designed for a software interpreter. It may be executed by a virtual machine (such as a JVM) or further compiled into machine code
Posted by: Guest on March-26-2021
-1

bytecode

6      5     5     5     5      6 bits
[  op  |  rs |  rt |  rd |shamt| fonct]  type-R
[  op  |  rs |  rt | adresse/immédiat ]  type-I
[  op  |        adresse cible         ]  type-J
Posted by: Guest on May-29-2021

Browse Popular Code Answers by Language