Vocabulary Flashcards

(24 cards)

1
Q

Algorithm

A

A sequence of steps that can be followed to complete a task

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

Decomposition

A

The process of breaking down problems into smaller sub-problems

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

Abstraction

A

The process of removing unnecessary detail from a problem

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

Integer

A

A whole number.

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

Real

A

A data type which is a number that can have a decimal value

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

Boolean

A

A data type that has one of two possible values which intend to represent two truth values

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

Character

A

letter, number Any, space, punctuation mark or symbol that can be typed onto a computer.

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

String

A

A sequence of characters.

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

Identifier

A

Include names for variables, constant and subroutine names

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

Variable

A

A reserved memory location to store variables that can be changed

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

Constant

A

A value that cannot be altered by the program during normal execution

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

Assignment

A

stores something in a variable or constant for the first time

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

Iteration

A

process of repeating lines of code

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

Definite (Iteration)

A

Will repeat a set number of times

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

Indefinite (Iteration)

A

In an indefinite iteration, the instructions will be repeated until certain conditions are met

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

Selection

A

Decisions that must be made while designing a program

17
Q

Subroutine

A

A sequence of program instructions that perform a specific task, packaged as a unit

18
Q

Procedure

A

A set of coded instructions that tell a computer how to run a program of calculation

19
Q

Function

A

A named section in the program that performs a specific task and can be repeated multiple times it also returns the value

20
Q

Nested

A

a loop in a loop or a

21
Q

Array

A

A data structure which can store a fixed-sized collection of elements of the same data type

22
Q

Concatenate

A

Strings can be joined to form a new string of data

23
Q

Structured Approach

A

Using decomposition to make smaller programs to solve the problem

24
Q

Validation

A

The program checks the data to make sure it meets rules and restrictions