Module 2 - Introduction To Programming - Updated
Module 2 - Introduction To Programming - Updated
Introduction to Programming
Module 2
COMPUTER FUNDAMENTALS & PROGRAMMING LAB
Prepared by:
ENGR. MARIE LUVETT I. GOH, MIT
What is Programming?
• Programming, also called software engineering, is a
multistep process for creating a program.
Beginning or End
On-page
of the Program
Connector
(Terminator)
Off-page
Process
Connector
System Flowchart
Process 1
Process 1.3.2
Program Flowchart
START
INPUT
PROCESS
OUTPUT
END
• Flowcharts can be used to express different structures:
sequence, selection, loop.
A structure is a basic unit of programming logic;
Selection Loop
Sequence
Guidelines for Drawing a Flowchart
• In drawing a proper flowchart, all necessary requirements
should be listed out in logical order.
• The flowchart should be clear, neat and easy to follow. There
should not be any room for ambiguity in understanding the
flowchart.
• The usual direction of the flow of a procedure or system is
from left to right or top to bottom.
• Only one flow line should come out from a process symbol.
• Only one flow line should enter a decision symbol, but two or
three flow lines, one for each possible answer, should leave
the decision symbol.
Guidelines for Drawing a Flowchart
• Ensure that the flowchart has
a logical start and finish.
• If the flowchart becomes
complex, it is better to use
connector symbols to reduce
the number of flow lines.
• Avoid the intersection of flow
lines if you want to make it
more effective and better way
of communication.
System Design
PSEUDOCODE – It is an algorithm written in normal
Human language statements to describe the logic and
processing flow.
Example:
if the list of payroll tasks(algorithm) looks like this:
Example:
Construction
• The actual writing of the program based on the
design specifications (coding).
• The design specifications serve as high level
blueprints to the programmers or software engineers
as they construct the system one program at a time.
Construction
Construction requires performing the following steps:
1. Select the appropriate programming language.
Machine Languages
Assembly Languages
High-Level Languages
2. Follow the syntax.
NOTE:
Syntax is the grammar of the programming language. It
consists of rules governing the structure and content of
the statements.
Testing and Validation
• Program testing involves running various tests, such
as desk checking and debugging – called alpha
testing, and then running actual or real data to make
sure the program works.
Testing and Validation
Testing and validation requires the following steps:
1. Perform desk-checking.
2. Debug the program
3. Run real data
Testing and Validation
1. Perform desk-checking.
Sequence Input
• Make a program x, y
End
Begin
Sequence
Input
• Make a program r
flowchart that will ask
for radius value.
A = pi * r * r
Compute and display
the AREA of a CIRCLE.
Output
A
End
Begin
m=1
Looping
• Make a program if
F
End
flowchart that will m<=10
m = m+1
Thank You!
Seatwork:
Problem solving using flowcharts