The essence of language lies in communication
Compiled language:c/S, features: Although need to compile, slow, first compiled into machine code, compiled machine code execution efficiency is the highest, because the CPU can directly identify
Interpreted language: script,javascript,web , features: No processing required, can be directly run, convenient, cross-platform, strong portability
The Java:java needs to be built on top of the JVM virtual machine, first compiled into a bytecode file known to the virtual machine, then interpreted and executed on the side, so Java belongs to the mixed language
Low-level language:
Compilation, c,c++, close to computer-recognized language, infinite proximity to machine code, close to hardware
Advanced Language:
Java: Closer to the human mind
C Language: The most consistent with the traditional programmer's cognition, C will be very good to grasp the distance of the machine, C language is in the middle of the person and machine seat, the most able to balance the distance between the two, can take into account the efficiency, but also can be a good use of human treatment.
A detailed explanation of computer language