IDE Tools [2.2] Flashcards
What does IDE stand for?
Integrated Development Environment
What do IDE’s have?
Code Editor Translator Pretty Printer - Colour Coding Error Diagnostics Set Breakpoints Line Numbers
What are the advantages of IDE’s?
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.
What are the disadvantages of IDE’s?
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
What should you do when reading a structure diagram?
Start at the top and work your way towards the bottom.
What are Line numbers?
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.
What is syntax highlighting?
Syntax highlighting (Pretty Printer) is where the colour of the text changes to show different parts of the program.
What are error diagnostics?
Error diagnostics help a programmer to find where they have made a mistake.
What are breakpoints?
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.