T8 - IDEs Flashcards
IDEs stands for
Integrated Development Environments
IDE fucntion
They have a number of tools and features that help programmers when they are programming
IDE eg
Visual Studio (for C#, VB and other languages),
Eclipse (for Java and many more)
IDLE (for Python)
Line numbers:
allow a programmer to clearly see each new line of code
line numbers folded means
Can be folded = parts of the program that the programmer doesn’t need to see
Line numbers: When errors are found
the line number that they occur on will also be stated
Syntax highlighting
- is where the colour of the text changes to show different parts of the program
Error diagnostics:
help a programmer to find where they have made a mistake
how are errors identified
-with their line number
-The code may be underlined or highlighted to show the error
Debugging code: break points
set by the programmer so that the IDE stops the program mid-way through running
break points, stepping through, watching variables pros
- pauses code
The programmer can the step through code line by line
They can watch variables as they change
-easier to identify errors
The run-time environment:
allows a programmer to test their program while it is running
If the program crashes = the run-time environment
can see what happened and give useful information to the programmer
The run-time environment + libraries that come with the programming language
will be available to the programmer to use
Editors –
Use to write and edit programming code