Algorithms and programs Flashcards

1
Q

Algorithm

A

a step-by-step procedure for solving a problem

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

Pseudocode

A

Code that resembles a programming language but use less strict syntax to express an algorithm and is INDEPNDENT of any real programming language.

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

Identifier

A

Is a user-defined name e.g. a variable or sub routine name

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

Parameter

A

a parameter or “argument” is a value that is passed into a function or procedure

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

IDE

A

Integrated Development Environment; Provides programmers with tools that are needed to create computer programs

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

Rogue value

A

A value that can be recognized as a termination value in a loop

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

Source code

A

The code listing of commands to be compiled or assembled into an executable program

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

Assignment statement

A

It copies a value (or result of a calculation) into the variable

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

Iteration

A

Other word LOOP

Repeatedly execute a block of code until a condition has been met

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

Selection

A

Other word for IF statement or CASE statement

Execute a block of code when a certain condition has been met

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

Sequence

A

Instructions that will executed one after another in a sequence

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