+ 1
What are the applications of java and python ?
Edit : I want to know in which fields and areas they are used.
2 Answers
+ 1
Java source code gets compiled to bytecode (myFile.java -> myFile.class) and then the bytecode gets to the JVM (Java Virtual Machine), where with JIT(Just in time compiler) it partionally gets compiled to machine code (its most used parts), when the bytecode is in JVM, the JVM initiate execution of the main() method of the given class and the process is started. This process is the app. Python, on the other hand, is fully interpreted language, so the instructions get executed one by one without compilation to maching code or even intermediate code.
0
@Хомяче Неважно
Thanks