SlideShare a Scribd company logo
Introduction to
Flowcharting
Grade 10- ICT
What is a Flowchart?
• A flowchart is a
diagram that depicts
the “flow” of a
program.
• The figure shown here
is a flowchart for
calculating the age.
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Basic Flowchart Symbols
• Notice there are three
types of symbols in this
flowchart:
– rounded rectangles
– parallelograms
– a rectangle
• Each symbol represents
a different type of
operation.
Rounded
Rectangle
Parallelogram
Rectangle
Rounded
Rectangle
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Basic Flowchart Symbols
• Terminals
– represented by rounded
rectangles
– indicate a starting or
ending point
Terminal
START
END Terminal
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Basic Flowchart Symbols
• Input/Output Operations
– represented by
parallelograms
– indicate an input or
output operation
Enter Present
year Display Age
Input/Output
Operation
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Basic Flowchart Symbols
• Processes
– represented by rectangles
– indicates a process such as
a mathematical
computation or variable
assignment
Age = Present
Year- Year of
Birth
Process
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Stepping Through
the Flowchart
Enter the
present
year:
Variable Contents:
Present Year: ?
Year of Birth: ?
Age: ?
Output
Operation
Stepping Through
the Flowchart
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Variable - a data item that may take on more than one value
during the runtime of a program.
Stepping Through
the Flowchart
Enter the
Present
Year: 2016
Input Operation
(User types 2016)
Stepping Through
the Flowchart
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Variable Contents:
Present Year: 2016
Year of Birth: ?
Age: ?
Variable - a data item that may take on more than one value
during the runtime of a program.
Stepping Through
the Flowchart
Enter your
Year of
birth:
Output
Operation
Stepping Through
the Flowchart
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Variable Contents:
Present Year: 2016
Year of Birth: ?
Age: ?
Variable - a data item that may take on more than one value
during the runtime of a program.
Stepping Through
the Flowchart
Enter your
Year of
Birth: 1990
Input Operation
(User types 1990)
Stepping Through
the Flowchart
Variable Contents:
Present Year: 2016
Year of Birth: 1990
Age: ?
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Variable - a data item that may take on more than one value
during the runtime of a program.
Process: The
difference of
2016 and
1990 is 26
which is
stored as Age
Stepping Through the
Flowchart
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Variable Contents:
Present Year: 2016
Year of Birth: 1990
Age: 26
Enter your
Year of
Birth: 1990
Variable - a data item that may take on more than one value
during the runtime of a program.
Stepping Through
the Flowchart
Age is 26
Output
Operation
START
Display message
“Enter the
present year”
Read Present
year
Display message
“Enter your year
of birth”
Read Year of
birth
Age = Present
year – Year of
birth
Display Age
END
Variable Contents:
Present Year: 2016
Year of Birth: 1990
Age: 26
Variable - a data item that may take on more than one value
during the runtime of a program.
Sample Problems:
1. Create a flowchart that will get the sum of two integers.
2. Create a flowchart that will convert a peso to dollar.
Exchange rate is $. 1.00 = Php. 45.00 (fixed)
Exercise Problems:
1. Create a flowchart that will convert a Celsius value to
Fahrenheit.
F= C * 9/5 +32
2. Create a flowchart that will get the Average of three
integers.
Four Flowchart Structures
• Sequence
• Decision
• Repetition
• Case
Sequence Structure
• a series of actions are performed in sequence
• The pay-calculating example was a sequence
flowchart.
Decision Structure
• One of two possible actions is taken, depending on a
condition.
Decision Structure
• A new symbol, the diamond, indicates a yes/no question. If
the answer to the question is yes, the flow follows one path.
If the answer is no, the flow follows another path
YESNO
Decision Structure
• In the flowchart segment below, the question “is x < y?” is
asked. If the answer is no, then process A is performed. If the
answer is yes, then process B is performed.
YESNO
Is
x < y?
Process BProcess A
Sample Problem
1. A flowchart that will identify the grade
entered by the user. If the grade is 75 and
above, system will display "You Passed", if not,
system will display "You Failed".
Sample Problem
2. Create a flowchart that will ask for the total
price purchased by a customer from a
department store. If the total price is Php500
and above, customer is entitled for a 30%
discount which will also be computed and
displayed on the system, otherwise "You are not
entitled for the discount" message should be
displayed.
Practice Exercise
1. A flowchart that will ask for a password of the computer. The correct
password is "Tamaraw". If the password is correct, "Welcome to Grade
10-Tamaraw" will be displayed, otherwise, "Access Denied".
2. There are only two kinds of employee in a company "Full Time" and "Part
Time". Create a flowchart that will compute for the weekly salary of an
employee.
For "Full Time" employees:
weekly salary = monthly salary / 4
For "Part Time" employees:
weekly salary = hourly rate * 25
Decision Structure
• The flowchart segment below shows how a decision structure
is expressed in C++ as an if/else statement.
YESNO
x < y?
Calculate a
as x times 2.
Calculate a
as x plus y.
if (x < y)
a = x * 2;
else
a = x + y;
Flowchart C++ Code
Decision Structure
• The flowchart segment below shows a decision structure with
only one action to perform. It is expressed as an if statement
in C++ code.
if (x < y)
a = x * 2;
Flowchart C++ Code
YESNO
x < y?
Calculate a
as x times 2.
Repetition Structure
• A repetition structure represents part of the program that
repeats. This type of structure is commonly known as a loop.
Repetition Structure
• Notice the use of the diamond symbol. A loop tests a
condition, and if the condition exists, it performs an action.
Then it tests the condition again. If the condition still exists,
the action is repeated. This continues until the condition no
longer exists.
Repetition Structure
• In the flowchart segment, the question “is x < y?” is asked. If
the answer is yes, then Process A is performed. The question
“is x < y?” is asked again. Process A is repeated as long as x is
less than y. When x is no longer less than y, the repetition
stops and the structure is exited.
x < y? Process A
YES
Repetition Structure
• The flowchart segment below shows a repetition structure
expressed in C++ as a while loop.
while (x < y)
x++;
Flowchart C++ Code
x < y? Add 1 to x
YES
Controlling a Repetition Structure
• The action performed by a repetition structure must
eventually cause the loop to terminate. Otherwise, an infinite
loop is created.
• In this flowchart segment, x is never changed. Once the loop
starts, it will never end.
• QUESTION: How can this
flowchart be modified so
it is no longer an infinite
loop?
x < y? Display x
YES
Controlling a Repetition Structure
• ANSWER: By adding an action within the repetition that
changes the value of x.
x < y? Display x Add 1 to x
YES
Sample Problem
1. A flowchart that will identify the grade
entered by the user. If the grade is 75 and
above, system will display "You Passed", if not,
system will display "You Failed".
Sample Problem
2. Create a flowchart that will ask for the total
price purchased by a customer from a
department store. If the total price is Php500
and above, customer is entitled for a 30%
discount which will also be computed and
displayed on the system, otherwise "You are not
entitled for the discount" message should be
displayed.
Practice Exercise
1. A flowchart that will ask for a password of the computer. The correct
password is "Tamaraw". If the password is correct, "Welcome to Grade
10-Tamaraw" will be displayed, otherwise, "Access Denied".
2. There are only two kinds of employee in a company "Full Time" and "Part
Time". Create a flowchart that will compute for the weekly salary of an
employee.
For "Full Time" employees:
weekly salary = monthly salary / 4
For "Part Time" employees:
weekly salary = hourly rate * 25
A Pre-Test Repetition Structure
• This type of structure is known as a pre-test repetition
structure. The condition is tested BEFORE any actions are
performed.
x < y? Display x Add 1 to x
YES
A Pre-Test Repetition Structure
• In a pre-test repetition structure, if the condition does not
exist, the loop will never begin.
x < y? Display x Add 1 to x
YES
A Post-Test Repetition Structure
• This flowchart segment shows a post-test
repetition structure.
• The condition is tested AFTER the actions
are performed.
• A post-test repetition structure always
performs its actions at least once.
Display x
Add 1 to x
YES
x < y?
A Post-Test Repetition Structure
• The flowchart segment below shows a post-test repetition
structure expressed in C++ as a do-while loop.
do
{
cout << x << endl;
x++;
} while (x < y);
Flowchart
C++ Code
Display x
Add 1 to x
YES
x < y?
Case Structure
• One of several possible actions is taken, depending
on the contents of a variable.
Case Structure
• The structure below indicates actions to perform
depending on the value in years_employed.
CASE
years_employed
1 2 3 Other
bonus = 100 bonus = 200 bonus = 400 bonus = 800
Case Structure
CASE
years_employed
1 2 3 Other
bonus = 100 bonus = 200 bonus = 400 bonus = 800
If years_employed = 1,
bonus is set to 100
If years_employed = 2,
bonus is set to 200
If years_employed = 3,
bonus is set to 400
If years_employed is
any other value, bonus
is set to 800
Connectors
• Sometimes a flowchart will not fit on one
page.
• A connector (represented by a small circle)
allows you to connect two flowchart
segments.
A
Connectors
A
ASTART
END
•The “A” connector
indicates that the second
flowchart segment begins
where the first segment
ends.
Modules
• A program module (such as a function in C++)
is represented by a special symbol.
Modules
•The position of the module
symbol indicates the point the
module is executed.
•A separate flowchart can be
constructed for the module.
START
END
Read Input.
Call calc_pay
function.
Display results.
Combining Structures
• Structures are commonly combined to create more complex
algorithms.
• The flowchart segment below combines a decision structure
with a sequence structure.
x < y? Display x Add 1 to x
YES
Combining Structures
• This flowchart segment
shows two decision
structures combined.
Display “x is
within limits.”
Display “x is
outside the limits.”
YESNO
x > min?
x < max?
YESNO
Display “x is
outside the limits.”
Review
• What do each of the following symbols
represent?
(Answer on next slide)
Answer
• What do each of the following symbols
represent?
Terminal
Input/Output
Operation
Process
Decision
Connector
Module
Review
• Name the four flowchart structures.
(Answer on next slide)
Answer
• Sequence
• Decision
• Repetition
• Case
• What type of structure is this?
Review
(Answer on next slide)
Answer
• Repetition
• What type of structure is this?
Review
(Answer on next slide)
Answer
• Sequence
• What type of structure is this?
Review
(Answer on next slide)
Answer
• Case
• What type of structure is this?
Review
(Answer on next slide)
Answer
• Decision

More Related Content

PPTX
Introduction to flowchart
PPTX
Computer Hardware: Parts & Functions
PDF
CSS L01 - Introduction to Computer System Servicing (NCII)
PPTX
Introduction to Pseudocode
PPT
Flowchart
PPTX
[EMPOWERMENT TECHNOLOGIES] - ADVANCED WORD PROCESSING SKILLS
PPTX
Productivity tools
PPT
GRADE 7 LESSON 5 MS WORD INTRO.ppt
Introduction to flowchart
Computer Hardware: Parts & Functions
CSS L01 - Introduction to Computer System Servicing (NCII)
Introduction to Pseudocode
Flowchart
[EMPOWERMENT TECHNOLOGIES] - ADVANCED WORD PROCESSING SKILLS
Productivity tools
GRADE 7 LESSON 5 MS WORD INTRO.ppt

What's hot (20)

PPTX
Flowcharts
PPT
Grade 7 computer software
PPT
Bullets and Styles
PPTX
Pseudocode
PPTX
Mail-Merge-and-Label-Generation.pptx
PPT
Flow charts
PPTX
Carry out-mensuration-and-calculation
PPT
TLE 9 (Technical Drafting) - Layout Drawing
DOCX
Sim in ICT four categories of pc hardware servicing hardware tools
PPTX
Input – process output
PDF
Motherboard parts & functions
PPT
PPT
Chapter 4 : SOUND
PPTX
Flowchart symbols meaning explained
PPTX
Ms powerpoint
PPTX
Basic of photo editing
DOCX
Demonstration lesson-plan-in-ict grade 11
PPT
Chapter 1 : INTRODUCTION TO MULTIMEDIA
PPTX
A complete course in Program Design using Pseudocode
PPTX
Lesson 6: INTEGRATING IMAGES AND EXTERNAL MATERIALS
Flowcharts
Grade 7 computer software
Bullets and Styles
Pseudocode
Mail-Merge-and-Label-Generation.pptx
Flow charts
Carry out-mensuration-and-calculation
TLE 9 (Technical Drafting) - Layout Drawing
Sim in ICT four categories of pc hardware servicing hardware tools
Input – process output
Motherboard parts & functions
Chapter 4 : SOUND
Flowchart symbols meaning explained
Ms powerpoint
Basic of photo editing
Demonstration lesson-plan-in-ict grade 11
Chapter 1 : INTRODUCTION TO MULTIMEDIA
A complete course in Program Design using Pseudocode
Lesson 6: INTEGRATING IMAGES AND EXTERNAL MATERIALS
Ad

Viewers also liked (20)

PPTX
Managing the Maturity of Tourism Destinations: the Challenge of Governance an...
DOC
Assignment on diagram and flowchart 1
PPTX
What is a flowchart
PPT
Grade 10 introduction and history of programming
PDF
ICT 6 - Lesson Plan
PPTX
Visitor counter
PPTX
Structured system analysis
PPTX
Flowchart
PPTX
Data and information
PPTX
MS Word 2007
PPTX
Uses of ict in society
PPTX
Ppt 2007 tutorial complete
PPS
ICTs in the Classroom-Why Use Them
PPT
Information communication technology (ict)
PPT
INTRODUCTION TO ICT
PPTX
Information and communication technology:a class presentation
PPT
10th std ppt
PPT
Use of ict for effective teaching and learning
PPT
Presentation on diagram and flowchart
PPTX
ICT in Education ppt
Managing the Maturity of Tourism Destinations: the Challenge of Governance an...
Assignment on diagram and flowchart 1
What is a flowchart
Grade 10 introduction and history of programming
ICT 6 - Lesson Plan
Visitor counter
Structured system analysis
Flowchart
Data and information
MS Word 2007
Uses of ict in society
Ppt 2007 tutorial complete
ICTs in the Classroom-Why Use Them
Information communication technology (ict)
INTRODUCTION TO ICT
Information and communication technology:a class presentation
10th std ppt
Use of ict for effective teaching and learning
Presentation on diagram and flowchart
ICT in Education ppt
Ad

Similar to Grade 10 flowcharting (20)

PPT
Flowcharting week 5 2019 2020
PPT
Flowcharting
PPT
Programming algorithms and flowchart.ppt
PPT
Flow charts week 5 2020 2021
PPT
Flowcharting 09-25-19
PDF
Astu DSA week 1-2.pdf
PPT
Programming.pptVBVBBMCGHFGFDFDHGDFKJKJKKJ;J
PPTX
Intro To C++ - Class 10 - Control Statements: Part 2
PPTX
Intro To C++ - Class 09 - Control Statements: Part 1
PPT
Flowchart - Introduction and Designing Tools
PPT
introduction to flowcharting complete.ppt
PPTX
lab-8 (1).pptx
PDF
What is an Algorithm and Flow Chart along with step wise problem solvingt
PPTX
Flow chart programming
PPTX
Metode Perancangan Program #2 Selection and Repetition Control Structure-ITSB...
PDF
Cse115 lecture03problemsolving
PPTX
Advanced Computer Programming..pptx
PPTX
Use case diagrams 2014
PPTX
algorithm and Pseudocode
PPTX
Pseudocode-Flowchart
Flowcharting week 5 2019 2020
Flowcharting
Programming algorithms and flowchart.ppt
Flow charts week 5 2020 2021
Flowcharting 09-25-19
Astu DSA week 1-2.pdf
Programming.pptVBVBBMCGHFGFDFDHGDFKJKJKKJ;J
Intro To C++ - Class 10 - Control Statements: Part 2
Intro To C++ - Class 09 - Control Statements: Part 1
Flowchart - Introduction and Designing Tools
introduction to flowcharting complete.ppt
lab-8 (1).pptx
What is an Algorithm and Flow Chart along with step wise problem solvingt
Flow chart programming
Metode Perancangan Program #2 Selection and Repetition Control Structure-ITSB...
Cse115 lecture03problemsolving
Advanced Computer Programming..pptx
Use case diagrams 2014
algorithm and Pseudocode
Pseudocode-Flowchart

More from Rafael Balderosa (10)

PPT
Intro to c++
PPT
Grade 10 program development cycle
PDF
Cybercrime law
PPT
Netiquette
PPT
If and nested if statements
PPT
Grade 9 netiquette
PPT
Grade 8 composition techniques
PPT
Grade 8 image file format
PPT
Grade 7 elements of computer system
PPT
Grade 7 history of internet
Intro to c++
Grade 10 program development cycle
Cybercrime law
Netiquette
If and nested if statements
Grade 9 netiquette
Grade 8 composition techniques
Grade 8 image file format
Grade 7 elements of computer system
Grade 7 history of internet

Recently uploaded (20)

PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PPTX
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
PDF
RMMM.pdf make it easy to upload and study
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
PDF
Classroom Observation Tools for Teachers
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
Lesson notes of climatology university.
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
Yogi Goddess Pres Conference Studio Updates
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
01-Introduction-to-Information-Management.pdf
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
Paper A Mock Exam 9_ Attempt review.pdf.
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
RMMM.pdf make it easy to upload and study
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
A systematic review of self-coping strategies used by university students to ...
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
Classroom Observation Tools for Teachers
Microbial diseases, their pathogenesis and prophylaxis
Lesson notes of climatology university.
Orientation - ARALprogram of Deped to the Parents.pptx
Chinmaya Tiranga quiz Grand Finale.pdf
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Final Presentation General Medicine 03-08-2024.pptx
Supply Chain Operations Speaking Notes -ICLT Program
Yogi Goddess Pres Conference Studio Updates
2.FourierTransform-ShortQuestionswithAnswers.pdf

Grade 10 flowcharting

  • 2. What is a Flowchart? • A flowchart is a diagram that depicts the “flow” of a program. • The figure shown here is a flowchart for calculating the age. START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END
  • 3. Basic Flowchart Symbols • Notice there are three types of symbols in this flowchart: – rounded rectangles – parallelograms – a rectangle • Each symbol represents a different type of operation. Rounded Rectangle Parallelogram Rectangle Rounded Rectangle START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END
  • 4. Basic Flowchart Symbols • Terminals – represented by rounded rectangles – indicate a starting or ending point Terminal START END Terminal START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END
  • 5. Basic Flowchart Symbols • Input/Output Operations – represented by parallelograms – indicate an input or output operation Enter Present year Display Age Input/Output Operation START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END
  • 6. Basic Flowchart Symbols • Processes – represented by rectangles – indicates a process such as a mathematical computation or variable assignment Age = Present Year- Year of Birth Process START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END
  • 7. Stepping Through the Flowchart Enter the present year: Variable Contents: Present Year: ? Year of Birth: ? Age: ? Output Operation Stepping Through the Flowchart START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END Variable - a data item that may take on more than one value during the runtime of a program.
  • 8. Stepping Through the Flowchart Enter the Present Year: 2016 Input Operation (User types 2016) Stepping Through the Flowchart START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END Variable Contents: Present Year: 2016 Year of Birth: ? Age: ? Variable - a data item that may take on more than one value during the runtime of a program.
  • 9. Stepping Through the Flowchart Enter your Year of birth: Output Operation Stepping Through the Flowchart START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END Variable Contents: Present Year: 2016 Year of Birth: ? Age: ? Variable - a data item that may take on more than one value during the runtime of a program.
  • 10. Stepping Through the Flowchart Enter your Year of Birth: 1990 Input Operation (User types 1990) Stepping Through the Flowchart Variable Contents: Present Year: 2016 Year of Birth: 1990 Age: ? START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END Variable - a data item that may take on more than one value during the runtime of a program.
  • 11. Process: The difference of 2016 and 1990 is 26 which is stored as Age Stepping Through the Flowchart START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END Variable Contents: Present Year: 2016 Year of Birth: 1990 Age: 26 Enter your Year of Birth: 1990 Variable - a data item that may take on more than one value during the runtime of a program.
  • 12. Stepping Through the Flowchart Age is 26 Output Operation START Display message “Enter the present year” Read Present year Display message “Enter your year of birth” Read Year of birth Age = Present year – Year of birth Display Age END Variable Contents: Present Year: 2016 Year of Birth: 1990 Age: 26 Variable - a data item that may take on more than one value during the runtime of a program.
  • 13. Sample Problems: 1. Create a flowchart that will get the sum of two integers. 2. Create a flowchart that will convert a peso to dollar. Exchange rate is $. 1.00 = Php. 45.00 (fixed)
  • 14. Exercise Problems: 1. Create a flowchart that will convert a Celsius value to Fahrenheit. F= C * 9/5 +32 2. Create a flowchart that will get the Average of three integers.
  • 15. Four Flowchart Structures • Sequence • Decision • Repetition • Case
  • 16. Sequence Structure • a series of actions are performed in sequence • The pay-calculating example was a sequence flowchart.
  • 17. Decision Structure • One of two possible actions is taken, depending on a condition.
  • 18. Decision Structure • A new symbol, the diamond, indicates a yes/no question. If the answer to the question is yes, the flow follows one path. If the answer is no, the flow follows another path YESNO
  • 19. Decision Structure • In the flowchart segment below, the question “is x < y?” is asked. If the answer is no, then process A is performed. If the answer is yes, then process B is performed. YESNO Is x < y? Process BProcess A
  • 20. Sample Problem 1. A flowchart that will identify the grade entered by the user. If the grade is 75 and above, system will display "You Passed", if not, system will display "You Failed".
  • 21. Sample Problem 2. Create a flowchart that will ask for the total price purchased by a customer from a department store. If the total price is Php500 and above, customer is entitled for a 30% discount which will also be computed and displayed on the system, otherwise "You are not entitled for the discount" message should be displayed.
  • 22. Practice Exercise 1. A flowchart that will ask for a password of the computer. The correct password is "Tamaraw". If the password is correct, "Welcome to Grade 10-Tamaraw" will be displayed, otherwise, "Access Denied". 2. There are only two kinds of employee in a company "Full Time" and "Part Time". Create a flowchart that will compute for the weekly salary of an employee. For "Full Time" employees: weekly salary = monthly salary / 4 For "Part Time" employees: weekly salary = hourly rate * 25
  • 23. Decision Structure • The flowchart segment below shows how a decision structure is expressed in C++ as an if/else statement. YESNO x < y? Calculate a as x times 2. Calculate a as x plus y. if (x < y) a = x * 2; else a = x + y; Flowchart C++ Code
  • 24. Decision Structure • The flowchart segment below shows a decision structure with only one action to perform. It is expressed as an if statement in C++ code. if (x < y) a = x * 2; Flowchart C++ Code YESNO x < y? Calculate a as x times 2.
  • 25. Repetition Structure • A repetition structure represents part of the program that repeats. This type of structure is commonly known as a loop.
  • 26. Repetition Structure • Notice the use of the diamond symbol. A loop tests a condition, and if the condition exists, it performs an action. Then it tests the condition again. If the condition still exists, the action is repeated. This continues until the condition no longer exists.
  • 27. Repetition Structure • In the flowchart segment, the question “is x < y?” is asked. If the answer is yes, then Process A is performed. The question “is x < y?” is asked again. Process A is repeated as long as x is less than y. When x is no longer less than y, the repetition stops and the structure is exited. x < y? Process A YES
  • 28. Repetition Structure • The flowchart segment below shows a repetition structure expressed in C++ as a while loop. while (x < y) x++; Flowchart C++ Code x < y? Add 1 to x YES
  • 29. Controlling a Repetition Structure • The action performed by a repetition structure must eventually cause the loop to terminate. Otherwise, an infinite loop is created. • In this flowchart segment, x is never changed. Once the loop starts, it will never end. • QUESTION: How can this flowchart be modified so it is no longer an infinite loop? x < y? Display x YES
  • 30. Controlling a Repetition Structure • ANSWER: By adding an action within the repetition that changes the value of x. x < y? Display x Add 1 to x YES
  • 31. Sample Problem 1. A flowchart that will identify the grade entered by the user. If the grade is 75 and above, system will display "You Passed", if not, system will display "You Failed".
  • 32. Sample Problem 2. Create a flowchart that will ask for the total price purchased by a customer from a department store. If the total price is Php500 and above, customer is entitled for a 30% discount which will also be computed and displayed on the system, otherwise "You are not entitled for the discount" message should be displayed.
  • 33. Practice Exercise 1. A flowchart that will ask for a password of the computer. The correct password is "Tamaraw". If the password is correct, "Welcome to Grade 10-Tamaraw" will be displayed, otherwise, "Access Denied". 2. There are only two kinds of employee in a company "Full Time" and "Part Time". Create a flowchart that will compute for the weekly salary of an employee. For "Full Time" employees: weekly salary = monthly salary / 4 For "Part Time" employees: weekly salary = hourly rate * 25
  • 34. A Pre-Test Repetition Structure • This type of structure is known as a pre-test repetition structure. The condition is tested BEFORE any actions are performed. x < y? Display x Add 1 to x YES
  • 35. A Pre-Test Repetition Structure • In a pre-test repetition structure, if the condition does not exist, the loop will never begin. x < y? Display x Add 1 to x YES
  • 36. A Post-Test Repetition Structure • This flowchart segment shows a post-test repetition structure. • The condition is tested AFTER the actions are performed. • A post-test repetition structure always performs its actions at least once. Display x Add 1 to x YES x < y?
  • 37. A Post-Test Repetition Structure • The flowchart segment below shows a post-test repetition structure expressed in C++ as a do-while loop. do { cout << x << endl; x++; } while (x < y); Flowchart C++ Code Display x Add 1 to x YES x < y?
  • 38. Case Structure • One of several possible actions is taken, depending on the contents of a variable.
  • 39. Case Structure • The structure below indicates actions to perform depending on the value in years_employed. CASE years_employed 1 2 3 Other bonus = 100 bonus = 200 bonus = 400 bonus = 800
  • 40. Case Structure CASE years_employed 1 2 3 Other bonus = 100 bonus = 200 bonus = 400 bonus = 800 If years_employed = 1, bonus is set to 100 If years_employed = 2, bonus is set to 200 If years_employed = 3, bonus is set to 400 If years_employed is any other value, bonus is set to 800
  • 41. Connectors • Sometimes a flowchart will not fit on one page. • A connector (represented by a small circle) allows you to connect two flowchart segments. A
  • 42. Connectors A ASTART END •The “A” connector indicates that the second flowchart segment begins where the first segment ends.
  • 43. Modules • A program module (such as a function in C++) is represented by a special symbol.
  • 44. Modules •The position of the module symbol indicates the point the module is executed. •A separate flowchart can be constructed for the module. START END Read Input. Call calc_pay function. Display results.
  • 45. Combining Structures • Structures are commonly combined to create more complex algorithms. • The flowchart segment below combines a decision structure with a sequence structure. x < y? Display x Add 1 to x YES
  • 46. Combining Structures • This flowchart segment shows two decision structures combined. Display “x is within limits.” Display “x is outside the limits.” YESNO x > min? x < max? YESNO Display “x is outside the limits.”
  • 47. Review • What do each of the following symbols represent? (Answer on next slide)
  • 48. Answer • What do each of the following symbols represent? Terminal Input/Output Operation Process Decision Connector Module
  • 49. Review • Name the four flowchart structures. (Answer on next slide)
  • 51. • What type of structure is this? Review (Answer on next slide)
  • 53. • What type of structure is this? Review (Answer on next slide)
  • 55. • What type of structure is this? Review (Answer on next slide)
  • 57. • What type of structure is this? Review (Answer on next slide)