IDE Tools [2.2] Flashcards

1
Q

What does IDE stand for?

A

Integrated Development Environment

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

What do IDE’s have?

A
Code Editor
Translator
Pretty Printer - Colour Coding
Error Diagnostics
Set Breakpoints
Line Numbers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the advantages of IDE’s?

A

IDE’s can be used to create software applications, drivers and utilities.
It allows developing software in any programming language without spending much time on language syntax.
IDE has the ability to correct syntaxes, gives a warning about memory leaks, assist in writing quality of code, etc.

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

What are the disadvantages of IDE’s?

A

May be too complex for beginning programmers
Each IDE will have a unique learning curve requiring time to learn
Cannot automatically fix errors, still need knowledge to code efficiently

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

What should you do when reading a structure diagram?

A

Start at the top and work your way towards the bottom.

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

What are Line numbers?

A

Line numbers allow a programmer to clearly see each new line of code.
When errors are found, the line number which they occur on can also be specified.

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

What is syntax highlighting?

A

Syntax highlighting (Pretty Printer) is 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
8
Q

What are error diagnostics?

A

Error diagnostics help a programmer to find where they have made a mistake.

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

What are breakpoints?

A

Breakpoints are set by the programmer so that the IDE stops the program mid way through running.
The programmer can step through the code line by line.
They can watch variables as they change.

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