ALGORITHMS Flashcards

Lecture 2

1
Q

What is an algorithm

A

Ordered sequence of steps that solve a problem in a limited number of steps.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Properties of an Algorithm?

A

Finiteness
Clear instructions
Input and output
Effective
Sequence of execution
Scope definitions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Pseudocode

A

Informal language that helps programmers develop
algorithms. Similar to everyday English

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

3 methods used in creating an algorithm

A

STEPPING, LOOPING and CHOOSING

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Stepping

A

Where all the instructions needed to solve a problem is set out
one after the other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Looping? What the 3 types?

A

Repeat instruction/ set of instructions a number of times.

REPEAT UNTIL loop
WHILE loop
FOR loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Choosing?

A

Method for making a choice, and uses the commands
IF, THEN and sometimes (but not always) ELSE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The Flowchart & symbols

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly