Chapter 57 - Use of an IDE Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Why use IDE’S?

A

» To execute the code
» Spot and debug errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does an IDE stand for?

A

» Integrated development environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a text editor?

A

» Allows you to add and edit code, as well as to insert comments

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a run time environment?

A

» Runs your program by converting source code into machine in order for it to be executed by the CPU

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is syntax highlighting?

A

» 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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is keyword highlighting?

A

» Color codes command words, variables and data types to make your code more readable and easier to debug

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a breakpoint?

A

» 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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the purpose of Automatic formatting?

A

» Increases efficiency

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is automatic line numbering?

A

» Allows the user to find the line which has an error in it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a stepper?

A

» Check values of variables and how they change during the execution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the purpose of error diagnositics?

A

» The IDE returns a set of errors to the programmer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Why use a break point?

A

» Allows to test a section of code, rather than test the entire code
» Allows to identify logic errors and syntax errors
» Reduce testing time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is an IDE?

A

» A software application that provides comprehensive facilities to computer programmers which helps a programmer to produce error-free,

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a syntax error?

A

» An error which does agree with the grammatical rule of the programming language, therefore cause the computer not being able to understand it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a logic error?

A

» An error where a program will run, but will run abnormally, producing unintended results or outputs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a watch?

A

» IDE feature which allows a program to stop on that line

17
Q

What is a trace?

A

» Tracing the execution of a program

18
Q

What is the purpose of testing?

A

» Try to uncover undetected erros

19
Q

What is normal data?

A

» Data within the range that you would expect and of the data type you would expect

20
Q

What is boundary data?

A

» Data at the ends of the expected range

21
Q

What is erroneous data?

A

» Data that is either just outside the expected range or the wrong data type

22
Q

What is dry run?

A

» With an aid of a trace table, as you follow through the logic of the program, you now down in each trace table when each variable changes and what its value is