What is the difference between programming language and scripting language? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the difference between programming language and scripting language?

I read on this forum that java is oop programming language and java script is oop scripting language. But i don't know the difference between programming and scripting language. Please help

6th Aug 2017, 6:16 AM
kurniawan dwi septian
kurniawan dwi septian - avatar
3 Answers
+ 9
Scripting languages are programming languages that don't require an compilation step. For example, you have to compile a Java program before you can run it. But in the normal case, you don't have to compile a JavaScript program before you run it. So JavaScript is sometimes called a "scripting" language. For more detailed info : http://www.geeksforgeeks.org/whats-the-difference-between-scripting-and-programming-languages/
6th Aug 2017, 6:21 AM
Dev
Dev - avatar
+ 1
thanks dave, that is very helping, thanks a lot 👍
6th Aug 2017, 6:36 AM
kurniawan dwi septian
kurniawan dwi septian - avatar
- 1
Scripting languages are programming language which are not pre-transformed to machine language (the only one a processor can really interpret) but interpreted by a processor running itself in machine language or in a scripting language. They more human friendly but less machine friendly (slower and less adapted to play with all the machine level possibilities)
6th Aug 2017, 9:04 AM
VcC
VcC - avatar