+ 1

What are the applications of java and python ?

Edit : I want to know in which fields and areas they are used.

28th Mar 2020, 4:35 PM
H-J
H-J - avatar
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.
29th Mar 2020, 1:13 AM
Хомяче Неважно
Хомяче Неважно - avatar
0
@Хомяче Неважно Thanks
29th Mar 2020, 9:36 AM
H-J
H-J - avatar