+ 9
What is the difference between programming languages and scripting languages?
What is the difference between programming languages and scripting languages?
5 Respuestas
+ 6
Hi,
Basically, all scripting languages are programming languages.
The theoretical difference between the two is that scripting languages do not require the compilation step and are rather interpreted.
For example, normally, a C program needs to be compiled before running whereas normally, a scripting language like JavaScript or PHP need not be compiled.
+ 5
Python is widely used without a compiler, but the main implementation of CPython needs a compiler. Same goes for JavaScript as well. So the deployment is also the major consideration because we can design both compiler or interpreter for one language according to our need.
+ 4
Programming languages need a compiler for convert their code into native machine code, Scripting languages don’t require to be compiled rather they are interpreted. Means scripting languages used an interpreter to convert their code into native machine code
+ 2
Now markup languages on the other hand...