What is bytecode?

A Machine-specific code
B Java code
C Machine-independent code
D None of the mentioned

Correct Answer: Machine-independent code

Java bytecode is the form of instructions that the Java virtual machine executes. Each bytecode opcode is one byte in length, although some require parameters, resulting in some multi-byte instructions.

Next steps