IDEs Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What are high level languages?

A

Code is easy to read,understand and modify
Must be translated be for a computer can understand it
Represents many instructions of machine code
Programs will be less memory efficient and slower
Same code will work for many different machines/processors

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

What are low level languages?

A

Code is very difficult to read,understand and modify
Commands in machine code can be executed without a translator
Programs will be more memory efficient and faster
Only works for one type of machine/processor

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

What do compilers do?

A

Translates all of source code at the same time to create 1 executable file
Returns a list of errors for the program when compiling is complete
Compiling can take a while but the program runs quickly after

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

What does an interpreter do?

A

Translates and runs the source code one instruction at a time but doesn’t create an executable file
Needed every time you run a program
Will return the first error it finds and then stop
Programs will run slower because code is translated whilst the program is running

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

What are line numbers?

A

Allows you to clearly see each new line of code so it’s easy to see errors

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

What is syntax highlighting?

A

Where the colour of the text changes to show different parts of the program

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

What are error diagnostics?

A

Helps you find where you have made a mistake by identifying the line number the error has occurred on

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

What are breakpoints?

A

Set by the programmer so that the IDE stops the program mid way through running

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

What is a run - time environment?

A

Allows a programmer to test their program whilst it’s running

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