Glossary Flashcards

(29 cards)

1
Q

Algorithm

A

A process that solves a problem

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

Comment

A

Information in a program that can be read by humans and ignored by program #

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

Compile

A

Translates high level language to low level in one big chunck

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

Compile

A

Translates high level language to low level in one big chinch

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

Interprete

A

Executes a program in high level language 1 line at a time

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

High level language

A

Simple language that programmer uses to make it easy to understand

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

Low level language

A

Easy for a computer to execute

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

Formal language

A

Languages designed for a specific purpose, math and coding

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

Naturals language

A

What we speak that can be ambiguous

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

Program

A

A sequence of instruction that lead to an action on computer

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

Run time error

A

Occurs after a program started running causing to not finish

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

Semantic error

A

Make the program do something we didn’t intend

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

Source code

A

A stored high level program to be compiled or interpreted

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

Syntax error

A

A structual error on the program causing it to stop, eg missing a bracket

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

Token

A

A command word with a feature eg “print” write what is input

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

Literals

A

A number or string written into a program

18
Q

Float

A

Numbers with decimal point

19
Q

Statement

20
Q

Expression

A

A combination of literals, variable, operator and functions gives a value or object

22
Q

Operators

A

Symbol with a job e.g addition, multiplication

23
Q

Operants

A

The vale’s the operator is using

24
Q

**

A

Exponentiation, a number to the power of another 3^6

25
//
Round the division by not including decimal place but doesn’t round correctly
26
27
Modulus operator
Uses % sign say the remainder when a number is divided by another
28
29