8.5 IDE's Flashcards
Give some problems with using notepad to edit source code
- No line numbers
- No syntax highlighting
- No ability to run code directly inside the editor
- No assistance in debugging code
IDE stands for
Integrated Development Environments
Examples of IDE’s
Visual Studio (code), IDLE, Pycharm
Give some IDE features
Line numbers, breakpoints, code folding, variable watching
Line numbers
Make it easy to see each new line of code
Syntax highlighting
Highlights where the colour of text changes to show different parts of the progrm
Error diagnostics
Help a programmer to find where they have made a mistake. It may be highlighted or underlined on the line they occur on
Breakpoints
Stops a program mid-way through running so they can step through code line by line
Run-time environment
Allows a programmer to test their progrm while it is running. It also means libraries that come with the language will be available to the programmer to use (basically to run program)