T7 Flashcards

1
Q

Purpose of a computer programe

A

A computer program is a specific set of ordered
instructions to be performed by a computer.

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

List the 4 IDE’s

A

Project File Management Support, GUI Builder,
Syntax Checker and Debugging Tools.

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

Process of Translation

A

Code written in a high-level language can be read and understood by
humans and requires translation so that the computer can execute the commands in the
program.

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

Algorithm

A

The sequence of steps designed to solve a particular problem. Written
in pseudocode.

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

Syntax

A

The set of rules defining the format/structure of each type of
programe statement.

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

Variable

A

The name/identifier of a memory location which holds data during
program execution.

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

Data Type

A

A description of the kind of data which is stored or manipulated in a
variable.

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

Sequence

A

A series of instructions is executed in the order in which
they are listed.

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

Selection

A

An action will be executed only if a condition is true

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

Iteration

A

A statement or sequence of statements can be executed more than once

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

Count Controlled Loop

A

A variable governs the number of times the
loop is executed … for which start/end/increment values are specified.

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

Condition Controlled Loop

A

The loop is controlled by a Boolean variable/one which is
either true or false the condition may be tested at the start of the loop (while) or at the end
of the loop (until)

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