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
0

What is the difference between programming language and scripting language?

19th May 2017, 10:13 AM
Sriram Chowdary Mellamputi
Sriram Chowdary Mellamputi - avatar
8 Answers
0
thank you for your awesome explanation with examples... please could you tell what are the differences between iterator and generator and advantages of each ?
20th May 2017, 9:06 AM
Sriram Chowdary Mellamputi
Sriram Chowdary Mellamputi - avatar
+ 4
@sriram, 😂😂 enjoying a lot ha?
20th May 2017, 4:41 PM
Sachin Artani
Sachin Artani - avatar
+ 2
scripting languages are interpreted which means they are executed line by line. You can think that you already have some programs already compiled (i.e ready to be executed) that you call them one by one. while other languages have to be compiled (i.e not ready to run yet) which means your code is first translatd into low level code that can be run on your machine. somtimes your code is translated into intermediate code then it runs on a virtual machine like java.
19th May 2017, 10:41 AM
AMR ELSAWY
AMR ELSAWY - avatar
+ 1
thanks for your awesome useful reply..
20th May 2017, 5:11 PM
Sriram Chowdary Mellamputi
Sriram Chowdary Mellamputi - avatar
0
thanks for your awesome explanation.. please could you explain what is the difference between encapsulation and abstraction in oops.
19th May 2017, 12:07 PM
Sriram Chowdary Mellamputi
Sriram Chowdary Mellamputi - avatar
0
encapsulation means that each object data (i.e state) is stored inside the object so the data is protected because the object is the only one that can operate on the data unless it allows other objects to modify its data. This is the way of hiding your data. abstraction means your view of the object as a data type that has some operations associated with it regardless of the implementation of the class (i.e. how the class is written)
19th May 2017, 12:15 PM
AMR ELSAWY
AMR ELSAWY - avatar
0
Thank you very much... please can you share code regarding this for better understanding if you have any examples.
19th May 2017, 5:58 PM
Sriram Chowdary Mellamputi
Sriram Chowdary Mellamputi - avatar
19th May 2017, 6:36 PM
AMR ELSAWY
AMR ELSAWY - avatar