Computer Science, asked by chandanapurured5350, 1 year ago

Explain why is a Java program???

Answers

Answered by lateef17
0
Java source code is compiled into bytecode when we use the javac compiler. The bytecode gets saved on the disk with the file extension .class . 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