Chapter 57 - Use of an IDE Flashcards
Why use IDE’S?
» To execute the code
» Spot and debug errors
What does an IDE stand for?
» Integrated development environment
What is a text editor?
» Allows you to add and edit code, as well as to insert comments
What is a run time environment?
» Runs your program by converting source code into machine in order for it to be executed by the CPU
What is syntax highlighting?
» Checks for an potential syntax errors in line with the rules of the language you are writing in
» Saves the programmer having to go through the process of compiling
What is keyword highlighting?
» Color codes command words, variables and data types to make your code more readable and easier to debug
What is a breakpoint?
» A debugging tool that enables you to stop the program execution at a specific point to enable you to see the values of the variables
What is the purpose of Automatic formatting?
» Increases efficiency
What is automatic line numbering?
» Allows the user to find the line which has an error in it
What is a stepper?
» Check values of variables and how they change during the execution
What is the purpose of error diagnositics?
» The IDE returns a set of errors to the programmer
Why use a break point?
» Allows to test a section of code, rather than test the entire code
» Allows to identify logic errors and syntax errors
» Reduce testing time
What is an IDE?
» A software application that provides comprehensive facilities to computer programmers which helps a programmer to produce error-free,
What is a syntax error?
» An error which does agree with the grammatical rule of the programming language, therefore cause the computer not being able to understand it
What is a logic error?
» An error where a program will run, but will run abnormally, producing unintended results or outputs