+ 3
What is difference between programming language and script language?
3 Respuestas
+ 2
Programming language -> compiler based to convert source language to machine level language.
Scripting language -> Uses an Interpreter.
https://www.codingninjas.com/blog/2018/12/08/difference-between-a-programming-language-and-a-scripting-language/
+ 1
Scripting languages are a subset of programming languages.
1-Scripting languages are not compiled to machine code by the user (python, perl, shell, etc.). Rather, another program (called the interpreter, runs the program and simulates its behavior)
2-Some programming languages that are not scripting (C, C++, Haskell, and other 'compiled' languages), are compiled to machine code, and is subsequently run.