Integrated Development Environments Flashcards

1
Q

Code editor

A
  • a text editor which allow you to write the source code
  • uses features like; syntax-highlighting, code-completion
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

De-bug tools

A
  • error diagnostics: highlight syntax errors in real-time as you program
  • debugger: allows you to run code line-by-line to find faults
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Translators

A
  • the IDE will usually have an interpreter, compiler and assembler built in
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Run-time environment

A
  • allows you to run programs to test how well they work
  • there are often multiple run time environments available so you can simulate your application on multiple different devices
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Stepping

A
  • allows you to monitor the effect of each individual line of code
  • by executing a single line at a time
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Breakpoint

A
  • allows users to set a point in the program at which the program will stop
  • this can help pin point where an error is occurring
How well did you know this?
1
Not at all
2
3
4
5
Perfectly