The question is realated to java. 😊 | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 3

The question is realated to java. 😊

What is the actual meaning of bytecode in Java? And What is "Sandbox" in bytecode?

15th Jun 2019, 7:15 AM
Dharmik Pajwani
Dharmik Pajwani - avatar
1 ответ
+ 9
Java bytecode is the result of the compilation of a Java program, an intermediate representation of that program which is machine independent.  The Java bytecode gets processed by the Java virtual machine (JVM) instead of the processor. It is the job of the JVM to make the necessary resource calls to the processor in order to run the bytecode. This bytecode can be run in any platform which has a Java installation in it. Get information about Sandbox from here.. https://www.webopedia.com/TERM/S/sandbox.html
15th Jun 2019, 11:37 AM
A͢J
A͢J - avatar