what is a byte code in java
Answers
Java bytecode is the instruction set of the Java virtual machine. Each bytecode is composed of one, or in some cases two bytes that represent the instruction (opcode), along with zero or more bytes for passing parameters.
Of the 255 possible byte-long opcodes, as of 2015, 198 are in use (~77%), 54 are reserved for future use, and 3 instructions (~1%) are set aside as permanently unimplemented.[1]
The Java bytecode system does not directly support floating point operations beyond 32 bits, except indirectly via bytecodes that enable use of 64-bit and 80-bit intermediate IEEE floating point operations. if this is helpful then please brainliest...
Answer:JAVA BYTE CODE
Explanation:Java is a high level programming language. Unlike other compilers, the java compiler converts the source code into a format which is neither dependent on a machine nor a platform. It produces an intermediate code in a special format called as 'java byte code".