Test Flashcards
What are the main features of an IDE?
If a text editor is used, the program will have to be complied with using program software. More advanced software known as an Integrated Development Environment (lDE) provides programmers with all of the facilities required to complete the development of an application from coding to testing.
What are the 5 elements that IDE consists of?
Source code editor
Compiler
Debugger
GUI builder
solution explorer
What is a compiler?
Converts all of the source code into machine code before executing it. Performs syntax analysis, if statements are not structured properly it generates a list of errors to help optimize the code.
What does translation consist of?
Assembler, interpreter, and compiler
What is an interpreter?
It translates source code one line at a time. The processor executes a line of code before translating the next line.
What is an assembler?
Translates assembly language into machine code.