Integrative Programming and Technologies 1

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 13

INTEGRATIVE PROGRAMMING AND

TECHNOLOGIES 1
SCRIPTING VS PROGRAMMING
What is the difference between Scripting
Languages to Programming Languages?

???
🠶 SCRIPT
🠶 I t is a program or sequence of instructions that is
interpreted or carried out by another program rather
by the computer processor (as a compiled program
is).
Example of Scripts
EXAMPLES OF SCRIPTING LANGUAGES
EXAMPLES OF PROGRAMMING
LANGUAGES
🠶 Scripting Language is a type of programming
language. It is interpreted by another program
instead of compiled by the processor. Script
languages can be embedded in html and add
functions to a web page like styles, graphics and
advertisements. These types of script languages
are client side, meaning it affects what the end
user sees in the browser. Server-side script
languages manipulate data in a database in the
server. Examples of Script Language are ASP,
JavaScript, Perl, PHP, Python, and TcL.
🠶 Programming Language refers to
high level languages like Ada, BASIC,
C, C++, COBOL, FORTRAN, Pascal,
Java, etc. Each of these languages
has keywords and a syntax to
organize the instructions for the
program.
🠶 Compilers and Interpreters are programs that help convert the high
level language into machine codes to be understood by the computers.
High-level Language

🠶 A high-level language is one that is understandable


by us, humans. This is called source code, or scripts.
Machine Code or the Binary Code
- represents text, computer processor instructions, or any other
data using a two-symbol system.
PROGRAMMING SCRIPTING LANGUAGES
LANGUAGES
Conversion Compiler Based Interpreter based

Dependency Platform dependent Platform Independent

Speed Fast Execution Slow Execution

Privacy Secured Not Secured

Designed Complex and lengthy Fast and Simple

Update Less Frequents Easy and Frequent

Application - Computationally Intensive - Series of automated tasks


Algorithms - Configurable Interface
- Independent - Prototyping
- Software

You might also like