Content
➢Introduction to computer programming
➢Computer Programming
➢Application (Whatcan a computer program do)
➢Program, Programmer
➢How a computer program work
➢Programming language ( compiled language,
Interpreted Langauge)
➢Pseudo Cod
Programming
Programmer
Application
Computer Programming
• Commanding computer on how to perform task(s)
• Process of converting computer problem into
executable program
A computer Program
• A sequence of commands (or
instructions) written to perform
specified task with a computer
What can a computer program do?
• Mathematical calculation
• Automate process
• Making games
• Making movies
• Design robots/ drone
• Self-driven car
• Web application
• Many more.
Programmer & Why we write program
Programmer
Apersonwhocreatesseries of logical instructions which
control computers to perform a desired task
Why we write program?
To let the machine do our jobs because it is faster, accurate,
reliable, extensible and cheap
How a computer program works
Programming Languages
Programming Languages
• A non-spoken languages designed to communicate
instruction to a machine
• Example C, C++, PHP, Python, Java, [Link]
Source Code
• Collection of computer instructions written using some
human readable computer programming languages
Programming Languages
Compiled language
• Need compiler to translate the source code into some
intermediate form
•Example C, C++
Interpreted language
• Execute instruction directly without previously
compiling • Example PHP, Python
Pseudo code
• Not Programming Language
• Write usingany spokenlanguage • To communicate
with each other • To understand problem in high level
form • Example
Ask email address from user IF user provide correct
email address format THEN say correct
ELSE
Say incorrect