ALGORITHMS Flashcards
Lecture 2
What is an algorithm
Ordered sequence of steps that solve a problem in a limited number of steps.
Properties of an Algorithm?
Finiteness
Clear instructions
Input and output
Effective
Sequence of execution
Scope definitions
Pseudocode
Informal language that helps programmers develop
algorithms. Similar to everyday English
3 methods used in creating an algorithm
STEPPING, LOOPING and CHOOSING
Stepping
Where all the instructions needed to solve a problem is set out
one after the other.
Looping? What the 3 types?
Repeat instruction/ set of instructions a number of times.
REPEAT UNTIL loop
WHILE loop
FOR loop
Choosing?
Method for making a choice, and uses the commands
IF, THEN and sometimes (but not always) ELSE
The Flowchart & symbols
A graphical representation of the sequence of operations .
Oval: initialization/end (defines the starting and ending point of a flowchart.)
Rectangle: Input / Output
/Process (The inputting of data for processing and printing out of
processed data. Manipulation of data.)
Diamond: Decision (process conditions using relational operators. Used for
trapping and filtering data)
Arrows: flow lines (defines logical sequence order of program)