Computer Science, asked by stephensoniang, 9 months ago

what happens when one compiles a Java program in BlueJ on their computer?

Answers

Answered by xSahiBx
0

Answer:

__________________________________

Java source code is compiled into bytecode when we use the javac compiler. The bytecode gets saved on the disk with the file extension . ... When the program is to be run, the bytecode is converted, using the just-in-time (JIT) compiler. The result is machine code which is then fed to the memory and is executed.

__________________________________

Similar questions