Pseudocode and Flowcharts Flashcards

1
Q

Pseudocode

A

A list of instruction that show how the program will work. It is set out with the same structure as a programming language.

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

Syntax

A

The rules of a language.

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

Comments

A

In pseudocode, comments are written to state what a particular line or section of code is for.

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

Variables

A

Named locations in memory that hold a data value.

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

Array

A

A data structure that holds a collection of values of the same data type.

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

Count

A

A method used to keep a record of how many times something has happened.

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

Totalling

A

The process of keeping a running total of certain values in a program.

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

Condition

A

A state in a program that will be met or not met.

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

Selection

A

A statement that represents choice in an algorithm.

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

IF Statements

A

IF statements allow a programmer to define several paths through a program.

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

CASE Statements

A

Another selection method that can be used is the CASE method. CASE is used when specific discrete data values are used, not for those that might be in range.

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

Iteration

A

Where a section of code is run repeatedly.

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

Count-controlled loop

A

Iteration that is performed a stated number of times.

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

Condition-controlled loop

A

Iteration that continues until, or while, a condition is met.

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

Flowcharts

A

a graphical representation of a computer program in relation to its sequence of functions (as distinct from the data it processes).

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