IDEs Flashcards
What does IDE stand for?
Integrated Development Environment
What is an IDE?
Software used to enter and edit source code. It will also compile programs to machine code and have debugging features
What are the facilities of an IDE that would be useful to programmers?
Error diagnostics (debugging and error detection)
Runtime environment
Translators
Code editors
What is a runtime environment?
Enables a program to be run. It checks for runtime errors and other testing can be carried out.
What is prettyprint?
Alters indentation and formatting to make code easier to read
What are error diagnostics?
A list of errors along with the line number in which they were detected
What are breakpoints?
Lines of code in the program that enables the programmer to pause the program at certain points to check the values of variables