1-Introduction SL Lab
1-Introduction SL Lab
1
Outline
•Scripting language.
•Characteristics of Scripting Languages
•Translation Process of Program
•Applications of scripting.
5
Translation Process of Program
Source Source Source
Interpreter Compiler
Compiler
Interpreter
Run
Execution Execution
6
Continued …
•Ex : Python uses combination of compilation and
interpretation:
–The source code is converted to an intermediate form
called byte code in a step similar to compilation.
–The byte code is executed by an interpreter.
–This improves performance over purely interpreted
systems.
•Non-scripted languages like C and C++ are compiled into
“Raw Machine Code" (RMC).