SlideShare a Scribd company logo
1 of 29
PLANNING TOOLS
Planning Tools
• ALGORITHMS
• FLOW CHARTS
• PSEUDO CODE
• DECISION TABLES
Pseudocode
• It Means:
• IMITATION or FALSE CODE
• It is an imitation of the computer instruction
• Using this programmer can concentrate on
developing logic without worrying about
syntax
• Easy to convert into programming language
Writing Pseudocode
Basic computer operations
There are six basic computer operations
1.computer can receive information
2.computer can put out information
3.computer can perform arithmetic
4.computer can assign a value to a variable or
memory location
5.computer can compare two variables and select
one of two alternate actions
6.computer can repeat a group of actions
5
Six Basic Computer Operations
1 A computer can receive information
– When a computer is required to receive
information or input from a particular source,
whether it is a terminal, a disk or any other
device, the verbs Read and Get are used in
pseudocode
Read => Input from a record
Get => Input from keyboard
Example pseudocode
1.Read student name
2.Get system data
3.Read number1, number2
4.Get tax_code
6
Six Basic Computer Operations
2 A computer can put out information
– When a computer is required to supply
information or output to a device, the verbs
Print, Write, Put, Output, or Display are used
in pseudocode
– Print => send output to printer
– Write => send out to file
– Put, Output, Display => send
to screen
Example pseudocode
1.Print ‘Program Completed’
2.Write customer record to master file
3.Output total tax
4.Display ‘End of data’
7
Six Basic Computer Operations
3 A computer can perform arithmetic
– Most programs require the computer to perform some sort of
mathematical calculation, or formula, and for these, a
programmer may use either actual mathematical symbols or the
words for those symbols
– To be consistent with high-level programming languages, the
following symbols can be written in pseudocode:
+ for Add - for Subtract
* for Multiply / for Divide ( ) for Parentheses
– When writing mathematical calculations for the computer,
standard mathematical ‘order of operations’ applies to
pseudocode and most computer languages
8
Six Basic Computer Operations
4 A computer can assign a value to a variable or
memory location
– There are three cases where you may write pseudocode
to assign a value to a variable or memory location:
1. To give data an initial value in pseudocode, the verbs
Initialize or Set are used
2. To assign a value as a result of some processing the symbols
‘=‘ or ‘←’ are written
3. To keep a variable for later use, the verbs Save or Store are
used
9
Six Basic Computer Operations
4 A computer can assign a value to a variable
or memory location
Example pseudocode
1.Initialize total_price to zero
2.Set student_count to zero
3.Total_price = cost_price + sales_tax
4.Total_price  cost_price + sales_tax
5.Store customer_num in last_customer_num
10
Six Basic Computer Operations
5 A computer can compare two variables and
select one or two alternate actions
– An important computer operation available to the
programmer is the ability to compare two
variables and then, as a result of the comparison,
select one of two alternate actions
– To represent this operation in pseudocode, special
keywords are used: IF and ELSE
The Selection Structure
amount < 100
interestRate = .06 interestRaate = .10
yes no
1. IF amount < 100
1.1 interestRate = .06
2. ELSE
2.1 Interest Rate = .10Pseudocode 
12
Six Basic Computer Operations
6 A computer can repeat a group of actions
– When there is a sequence of processing steps that need to be
repeated, a special keyword, WHILE is used in pseudocode
– The condition for the repetition of a group of actions is
established in the WHILE clause, and the actions to be
repeated are listed beneath it
Repetition using WHILE
Start
count = 0
count
<10
add 1 to
count
write count
Write
“The End”
Stop
1. count = 0
2. WHILE count < 10
2.1 ADD 1 to count
2.2 WRITE count
3. WRITE “The End”
Mainline
1.count = 0
2.DOWHILE count < 10
2.1 DO Process
3.WRITE “The End”
Process
2.1 ADD 1 to count
2.2 WRITE count
 Modular
Rules for Pseudocode
• Write only one statement per line
• Capitalize initial keyword
• Indent to show hierarchy
• End multiline structures
• Keep statements language
independent
One Statement Per Line
Each statement in pseudocode should
express just one action for the computer.
Pseudocode
READ name, hoursWorked, payRate
gross = hoursWorked * payRate
WRITE name, hoursWorked, gross
Capitalize Initial Keyword
In the example below note the words: READ and
WRITE. These are just a few of the keywords to use,
others include:
READ, WRITE, IF, ELSE, ENDIF, WHILE, ENDWHILE
Pseudocode
READ name, hoursWorked, payRate
gross = hoursWorked * payRate
WRITE name, hoursWorked, gross
Rules for Variable Names
• Begin with lowercase letter
• Contain no spaces
• Additional words begin with capital
• Unique names within code
• Consistent use of names
Indent to Show Hierarchy
• Sequence:
Keep statements in sequence all starting in the same column
• Selection:
Indent statements that fall inside selection structure, but not the keywords that form
the selection
• Loop:
Indent statements that fall inside the loop but not keywords that form the loop
Each design structure uses a particular
indentation pattern
READ name, grossPay, taxes
IF taxes > 0
net = grossPay – taxes
ELSE
net = grossPay
ENDIF
WRITE name, net
End Multiline Structures
See the IF/ELSE/ENDIF as constructed
above, the ENDIF is in line with the IF.
The same applies for WHILE/ENDWHILE
etc…
READ name, grossPay, taxes
IF taxes > 0
net = grossPay – taxes
ELSE
net = grossPay
ENDIF
WRITE name, net
Types of Logic Structure
• Sequence
• Selection
• Iteration
Sequence
• Performing instruction one after another
The Selection Structure
amount < 100
interestRate = .06 interestRate = .10
yes no
IF amount < 100
interestRate = .06
ELSE
Interest Rate = .10
ENDIF
Pseudocode 
The Looping Structure
In flowcharting one of the more confusing
things is to separate selection from looping.
This is because each structure use the
diamond as their control symbol. In
pseudocode we avoid this by using specific
keywords to designate looping
WHILE/ENDWHILE
REPEAT/UNTIL
WHILE / ENDWHILE
Start
count = 0
count
<10
add 1 to
count
write count
Write
“The End”
Stop
count = 0
WHILE count < 10
ADD 1 to count
WRITE count
ENDWHILE
WRITE “The End”
Mainline
count = 0
WHILE count < 10
DO Process
ENDWHILE
WRITE “The End”
Process
ADD 1 to count
WRITE count
 Modular
REPEAT / UNTIL
Start
count = 0
count
<10
add 1 to
count
write count
Write
“The End”
Stop
count = 0
REPEAT
ADD 1 to count
WRITE count
UNTIL count >= 10
WRITE “The End”
Mainline
count = 0
REPEAT
DO Process
UNTIL count >= 10
WRITE “The End”
Process
ADD 1 to count
WRITE count
 Modular
Advantages & Disadvantages
Flowchart Advantages:
 Standardized
 Visual
Pseudocode Advantages
 Easily modified
 Implements structured
concepts
 Done easily on Word
Processor
Flowchart Disadvantages:
 Hard to modify
 Structured design elements not
implemented
 Special software required
 Time Consuming
Pseudocode Disadvantages:
 Not visual
 No accepted standard, varies from
company to company
Working with Fields
Calculations
+ add
- subtract
* multiply
/ divide
** or ^ exponentiation
( ) grouping
Selection
> greater than
< less than
= equal to
>= greater than or
equal to
<= less than or equal to
!= not equal to
Any Questions
pseudo code basics

More Related Content

What's hot

Pseudocode flowcharts
Pseudocode flowchartsPseudocode flowcharts
Pseudocode flowcharts
nicky_walters
 

What's hot (20)

Loops in C Programming Language
Loops in C Programming LanguageLoops in C Programming Language
Loops in C Programming Language
 
Adder ppt
Adder pptAdder ppt
Adder ppt
 
Asymptotic Notations
Asymptotic NotationsAsymptotic Notations
Asymptotic Notations
 
Pseudocode flowcharts
Pseudocode flowchartsPseudocode flowcharts
Pseudocode flowcharts
 
Programming flowcharts for C Language
Programming flowcharts for C LanguageProgramming flowcharts for C Language
Programming flowcharts for C Language
 
Modular programming
Modular programmingModular programming
Modular programming
 
Bitwise operators
Bitwise operatorsBitwise operators
Bitwise operators
 
linked list in data structure
linked list in data structure linked list in data structure
linked list in data structure
 
Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statements
 
C Programming: Structure and Union
C Programming: Structure and UnionC Programming: Structure and Union
C Programming: Structure and Union
 
Array in c
Array in cArray in c
Array in c
 
Union in C programming
Union in C programmingUnion in C programming
Union in C programming
 
Linked list
Linked listLinked list
Linked list
 
String in c programming
String in c programmingString in c programming
String in c programming
 
Algorithm and flowchart
Algorithm and flowchartAlgorithm and flowchart
Algorithm and flowchart
 
Conditional Statement in C Language
Conditional Statement in C LanguageConditional Statement in C Language
Conditional Statement in C Language
 
Data Structures and Algorithm - Module 1.pptx
Data Structures and Algorithm - Module 1.pptxData Structures and Algorithm - Module 1.pptx
Data Structures and Algorithm - Module 1.pptx
 
C lecture 4 nested loops and jumping statements slideshare
C lecture 4 nested loops and jumping statements slideshareC lecture 4 nested loops and jumping statements slideshare
C lecture 4 nested loops and jumping statements slideshare
 
Loops c++
Loops c++Loops c++
Loops c++
 
Programming in c Arrays
Programming in c ArraysProgramming in c Arrays
Programming in c Arrays
 

Similar to pseudo code basics

My programming final proj. (1)
My programming final proj. (1)My programming final proj. (1)
My programming final proj. (1)
aeden_brines
 
Macasu, gerrell c.
Macasu, gerrell c.Macasu, gerrell c.
Macasu, gerrell c.
gerrell
 
Program logic and design
Program logic and designProgram logic and design
Program logic and design
Chaffey College
 
Switch case and looping kim
Switch case and looping kimSwitch case and looping kim
Switch case and looping kim
kimberly_Bm10203
 
Lec-ProblemSolving.pptx
Lec-ProblemSolving.pptxLec-ProblemSolving.pptx
Lec-ProblemSolving.pptx
miansaad18
 

Similar to pseudo code basics (20)

4. programing 101
4. programing 1014. programing 101
4. programing 101
 
My programming final proj. (1)
My programming final proj. (1)My programming final proj. (1)
My programming final proj. (1)
 
pm1
pm1pm1
pm1
 
Complete C++ programming Language Course
Complete C++ programming Language CourseComplete C++ programming Language Course
Complete C++ programming Language Course
 
3 algorithm-and-flowchart
3 algorithm-and-flowchart3 algorithm-and-flowchart
3 algorithm-and-flowchart
 
Macasu, gerrell c.
Macasu, gerrell c.Macasu, gerrell c.
Macasu, gerrell c.
 
lec_4_data_structures_and_algorithm_analysis.ppt
lec_4_data_structures_and_algorithm_analysis.pptlec_4_data_structures_and_algorithm_analysis.ppt
lec_4_data_structures_and_algorithm_analysis.ppt
 
lec_4_data_structures_and_algorithm_analysis.ppt
lec_4_data_structures_and_algorithm_analysis.pptlec_4_data_structures_and_algorithm_analysis.ppt
lec_4_data_structures_and_algorithm_analysis.ppt
 
Code Tuning
Code TuningCode Tuning
Code Tuning
 
Switch case and looping new
Switch case and looping newSwitch case and looping new
Switch case and looping new
 
Program logic and design
Program logic and designProgram logic and design
Program logic and design
 
Python Training in Chandigarh(Mohali)
Python Training in Chandigarh(Mohali)Python Training in Chandigarh(Mohali)
Python Training in Chandigarh(Mohali)
 
Python Training Course in Chandigarh(Mohali)
Python Training Course in Chandigarh(Mohali)Python Training Course in Chandigarh(Mohali)
Python Training Course in Chandigarh(Mohali)
 
Switch case and looping kim
Switch case and looping kimSwitch case and looping kim
Switch case and looping kim
 
Lecture 1 Introduction C++
Lecture 1 Introduction C++Lecture 1 Introduction C++
Lecture 1 Introduction C++
 
UNIT 1.pptx
UNIT 1.pptxUNIT 1.pptx
UNIT 1.pptx
 
My final requirement
My final requirementMy final requirement
My final requirement
 
Unit 1-problem solving with algorithm
Unit 1-problem solving with algorithmUnit 1-problem solving with algorithm
Unit 1-problem solving with algorithm
 
Lec-ProblemSolving.pptx
Lec-ProblemSolving.pptxLec-ProblemSolving.pptx
Lec-ProblemSolving.pptx
 
Improving Code Quality Through Effective Review Process
Improving Code Quality Through Effective  Review ProcessImproving Code Quality Through Effective  Review Process
Improving Code Quality Through Effective Review Process
 

More from Sabik T S (7)

Managers roles and skills
Managers roles and skillsManagers roles and skills
Managers roles and skills
 
Introduction to C programming
Introduction to C programmingIntroduction to C programming
Introduction to C programming
 
Algorithm and Flowcharts
Algorithm and FlowchartsAlgorithm and Flowcharts
Algorithm and Flowcharts
 
Data Input and Output
Data Input and OutputData Input and Output
Data Input and Output
 
decision table training session
decision table training sessiondecision table training session
decision table training session
 
cover letter
cover lettercover letter
cover letter
 
Types of welding
Types of welding Types of welding
Types of welding
 

Recently uploaded

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 

Recently uploaded (20)

Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 

pseudo code basics

  • 2. Planning Tools • ALGORITHMS • FLOW CHARTS • PSEUDO CODE • DECISION TABLES
  • 3. Pseudocode • It Means: • IMITATION or FALSE CODE • It is an imitation of the computer instruction • Using this programmer can concentrate on developing logic without worrying about syntax • Easy to convert into programming language
  • 4. Writing Pseudocode Basic computer operations There are six basic computer operations 1.computer can receive information 2.computer can put out information 3.computer can perform arithmetic 4.computer can assign a value to a variable or memory location 5.computer can compare two variables and select one of two alternate actions 6.computer can repeat a group of actions
  • 5. 5 Six Basic Computer Operations 1 A computer can receive information – When a computer is required to receive information or input from a particular source, whether it is a terminal, a disk or any other device, the verbs Read and Get are used in pseudocode Read => Input from a record Get => Input from keyboard Example pseudocode 1.Read student name 2.Get system data 3.Read number1, number2 4.Get tax_code
  • 6. 6 Six Basic Computer Operations 2 A computer can put out information – When a computer is required to supply information or output to a device, the verbs Print, Write, Put, Output, or Display are used in pseudocode – Print => send output to printer – Write => send out to file – Put, Output, Display => send to screen Example pseudocode 1.Print ‘Program Completed’ 2.Write customer record to master file 3.Output total tax 4.Display ‘End of data’
  • 7. 7 Six Basic Computer Operations 3 A computer can perform arithmetic – Most programs require the computer to perform some sort of mathematical calculation, or formula, and for these, a programmer may use either actual mathematical symbols or the words for those symbols – To be consistent with high-level programming languages, the following symbols can be written in pseudocode: + for Add - for Subtract * for Multiply / for Divide ( ) for Parentheses – When writing mathematical calculations for the computer, standard mathematical ‘order of operations’ applies to pseudocode and most computer languages
  • 8. 8 Six Basic Computer Operations 4 A computer can assign a value to a variable or memory location – There are three cases where you may write pseudocode to assign a value to a variable or memory location: 1. To give data an initial value in pseudocode, the verbs Initialize or Set are used 2. To assign a value as a result of some processing the symbols ‘=‘ or ‘←’ are written 3. To keep a variable for later use, the verbs Save or Store are used
  • 9. 9 Six Basic Computer Operations 4 A computer can assign a value to a variable or memory location Example pseudocode 1.Initialize total_price to zero 2.Set student_count to zero 3.Total_price = cost_price + sales_tax 4.Total_price  cost_price + sales_tax 5.Store customer_num in last_customer_num
  • 10. 10 Six Basic Computer Operations 5 A computer can compare two variables and select one or two alternate actions – An important computer operation available to the programmer is the ability to compare two variables and then, as a result of the comparison, select one of two alternate actions – To represent this operation in pseudocode, special keywords are used: IF and ELSE
  • 11. The Selection Structure amount < 100 interestRate = .06 interestRaate = .10 yes no 1. IF amount < 100 1.1 interestRate = .06 2. ELSE 2.1 Interest Rate = .10Pseudocode 
  • 12. 12 Six Basic Computer Operations 6 A computer can repeat a group of actions – When there is a sequence of processing steps that need to be repeated, a special keyword, WHILE is used in pseudocode – The condition for the repetition of a group of actions is established in the WHILE clause, and the actions to be repeated are listed beneath it
  • 13. Repetition using WHILE Start count = 0 count <10 add 1 to count write count Write “The End” Stop 1. count = 0 2. WHILE count < 10 2.1 ADD 1 to count 2.2 WRITE count 3. WRITE “The End” Mainline 1.count = 0 2.DOWHILE count < 10 2.1 DO Process 3.WRITE “The End” Process 2.1 ADD 1 to count 2.2 WRITE count  Modular
  • 14. Rules for Pseudocode • Write only one statement per line • Capitalize initial keyword • Indent to show hierarchy • End multiline structures • Keep statements language independent
  • 15. One Statement Per Line Each statement in pseudocode should express just one action for the computer. Pseudocode READ name, hoursWorked, payRate gross = hoursWorked * payRate WRITE name, hoursWorked, gross
  • 16. Capitalize Initial Keyword In the example below note the words: READ and WRITE. These are just a few of the keywords to use, others include: READ, WRITE, IF, ELSE, ENDIF, WHILE, ENDWHILE Pseudocode READ name, hoursWorked, payRate gross = hoursWorked * payRate WRITE name, hoursWorked, gross
  • 17. Rules for Variable Names • Begin with lowercase letter • Contain no spaces • Additional words begin with capital • Unique names within code • Consistent use of names
  • 18. Indent to Show Hierarchy • Sequence: Keep statements in sequence all starting in the same column • Selection: Indent statements that fall inside selection structure, but not the keywords that form the selection • Loop: Indent statements that fall inside the loop but not keywords that form the loop Each design structure uses a particular indentation pattern READ name, grossPay, taxes IF taxes > 0 net = grossPay – taxes ELSE net = grossPay ENDIF WRITE name, net
  • 19. End Multiline Structures See the IF/ELSE/ENDIF as constructed above, the ENDIF is in line with the IF. The same applies for WHILE/ENDWHILE etc… READ name, grossPay, taxes IF taxes > 0 net = grossPay – taxes ELSE net = grossPay ENDIF WRITE name, net
  • 20. Types of Logic Structure • Sequence • Selection • Iteration
  • 22. The Selection Structure amount < 100 interestRate = .06 interestRate = .10 yes no IF amount < 100 interestRate = .06 ELSE Interest Rate = .10 ENDIF Pseudocode 
  • 23. The Looping Structure In flowcharting one of the more confusing things is to separate selection from looping. This is because each structure use the diamond as their control symbol. In pseudocode we avoid this by using specific keywords to designate looping WHILE/ENDWHILE REPEAT/UNTIL
  • 24. WHILE / ENDWHILE Start count = 0 count <10 add 1 to count write count Write “The End” Stop count = 0 WHILE count < 10 ADD 1 to count WRITE count ENDWHILE WRITE “The End” Mainline count = 0 WHILE count < 10 DO Process ENDWHILE WRITE “The End” Process ADD 1 to count WRITE count  Modular
  • 25. REPEAT / UNTIL Start count = 0 count <10 add 1 to count write count Write “The End” Stop count = 0 REPEAT ADD 1 to count WRITE count UNTIL count >= 10 WRITE “The End” Mainline count = 0 REPEAT DO Process UNTIL count >= 10 WRITE “The End” Process ADD 1 to count WRITE count  Modular
  • 26. Advantages & Disadvantages Flowchart Advantages:  Standardized  Visual Pseudocode Advantages  Easily modified  Implements structured concepts  Done easily on Word Processor Flowchart Disadvantages:  Hard to modify  Structured design elements not implemented  Special software required  Time Consuming Pseudocode Disadvantages:  Not visual  No accepted standard, varies from company to company
  • 27. Working with Fields Calculations + add - subtract * multiply / divide ** or ^ exponentiation ( ) grouping Selection > greater than < less than = equal to >= greater than or equal to <= less than or equal to != not equal to