Unit 2 - 5 Flashcards

1
Q

What is meant by a ‘high level language’?

A

Instructions that tell a computer what to do
Written in machine code (binary or hexadecimal)
Each number in machine code represents a different instruction

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

What are the advantages of using a high level language?

A

Easier for programmer to understand
Contains words from natural programming language

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

What is a low level language?

A

Sits close to computers instruction set which is a set of instructions that the computer understands, not the programmer/user

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

Define machine code?

A

Instructions that the processor (computer) understands and can act upon, often displayed as binary or hexadecimal

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

What is an assembler (assembly language)?

A

Sits between machine code and high level language, it uses mnemonics

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

What are advantages and disadvantages of assembly language?

A

Easier to write
Takes time and effort to spot mistakes

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

Define source code?

A

Code written in high level language that users understand but computer doesn’t process

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

What is object code?

A

Code that has been translated from source code into a form (object code) that computer can interpret

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

What are the 2 types of translators?

A

Compilers and interpreters

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

What is a complier?

A

Translates source code into object code IN ONE GO
Optimises code, takes up less memory space which makes it run quicker
Complied program can be supplied as an executable file which when run starts a program

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

What is an interpreter?

A

Translates source code into object code ONE INSTRUCTION AT A TIME
Object code is then immediately executed

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

What are advantages and disadvantages of a complier?

A

Can optimise code making it quicker and taking up less memory space, programmes prefer to supply executables rather than source code -
Needs a lot of memory to translate as a whole
Doesn’t usually spot errors

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

What are advantages and disadvantages of an interpreter?

A

Instructions executed as soon as they are translated, errors can be quickly spotted, requires less available memory -
Doesn’t optimise code, runs slower because processor has to wait for each instruction, doesn’t produce executable file, could be modified without permission

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

Define an IDE?

A

Integrated development environment - a digital environment used to develop games, software, hardware that offers integration from debugging all the way to compiling

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

Give examples of an IDE in a python code?

A

Variable watcher
Step in tool
Break points

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