Key Words 1 Flashcards

1
Q

operating system

A

software that controls and manages the computer

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

float

A

stores a real or decimal number

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

FOR…NEXT loop

A

counter based iteration, repeats a set amount of times

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

integer

A

stores a whole number

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

constant

A

a structure for data storage, whose value may not change whilst the program is running

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

array

A

a structure for data storage, holding multiple items of the same type and size

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

utility

A

software that performs a single task, usually to maintain or configure the computer, eg text editor

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

CPU

A

the Central Processing Unit that executes the code

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

application

A

software that performs a general, user-focused task, eg word processor

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

DO…WHILE loop

A

condition based iteration, repeats while a condition is true, checks condition at the end so always executes at least once

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

WHILE…DO loop

A

condition based iteration, repeats while a condition is true, checks condition at the start

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

storage technologies

A

magnetic, solid state, optical

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

coding standards

A

comments, indentation, appropriate variable names, modularisation

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

software

A

the executable code and data stored and running on a computer

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

boolean

A

stores True or False

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

hardware

A

the physical components of a computer

17
Q

string

A

stores a sequence of alphanumeric characters

18
Q

variable

A

a structure for data storage, whose value may change during program execution

19
Q

selection

A

choosing whether to execute a set of commands or not, based upon a decision

20
Q

SELECT…CASE

A

selection based on the value of a variable

21
Q

iteration

A

repeating a set of commands, based upon a counter, or while a condition is met

22
Q

sequence

A

executing commands in a particular order, one after the other

23
Q

IF…ELSE…END IF

A

selection based on a True/False condition

24
Q

Embedded system

A

A computer system that is built into another device

25
Q

MOD

A

Gives the remainder

26
Q

DIV

A

Gives the integer division (the big number)