Saved Bookmarks
| 1. |
What is the theoretical difference between Scripting language and other programming language? |
|
Answer» The theoretical difference between the two is that scripting languages do not require the 228 compilation step and are rather interpreted. For example, normally, a C++ program needs to be compiled before running whereas, a scripting language like JavaScript or Python need not be compiled. A scripting language requires an interpreter while a programming language requires a compiler. |
|