Another phrase for Software development environment?
Integrated Development Environments
What is IDE?
Um…
Name 11 fucking facilities
(IDE)
Explain editor
(1 of the facilities for IDE)
Allows programmer to enter, format and edit source code
Explain compiler
(1 of the facilities for IDE)
*Converts source code into executable machine code
*Once compiled, can be run any time
Explain interpreter
(1 of the facilities for IDE)
Explain linker
(1 of the facilities for IDE)
Explain loader
(1 of the facilities for IDE)
Program which loads previously compiled code into memory
Explain debugger
(1 of the facilities for IDE)
Program which helps locate, identify and rectify errors in program
Explain trace
(1 of the facilities for IDE)
Explain break point
(1 of the facilities for IDE)
Explain variable watch
(3 separate bullet points)
(1 of the facilities for IDE)
*Values are ‘watched’ when code is “single-stepped”
* To see effects of code on variable
Explain memory inspector
(1 of the facilities for IDE)
Explain error diagnostics
(1 of the facilities for IDE)
What are libraries
(IDE related)
An example of private functions?
(libraries)
*Standard mathematical operations
( square root, random number generator )
An example of subprograms
(libraries)
( such as saving data to disk)
2 Advantages of standard libraries?
(libraries)
Is it possible to create your own custom library?
(libraries)
Yes.