Module 4 Flashcards

1
Q

Code which causes a program to produce erroneous results

A

bug

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

Allows a programmer to monitor the execution of a program to locate and remove logic errors

A

Debugger

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

An error in the sequence of characters in a line of code which are intended to be written in a particular order and are identified when the code is compiled

A

Compilation Error

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

Indicates where an exception occurred, the type of exception, and links to information on how to handle the exception

A

Exception Assistant

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

The more entered when a program is suspended during execution at a break point

A

Break mode

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

Markers which identify where a program wants to pause the program and run it line by line

A

breakpoints

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

Resumes execution until the next breakpoint or end of main whichever comes first

A

Continue Command

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

Adding a breakpoint to the code to stop the execution of the program at the line where the breakpoint is inserted

A

Insert breakpoint

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

Allows the programmer to make modifications or changes to the code while in debug mode and then continue executing the code with the modifications and without having to recompile

A

Edit and continue

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

Transforms the high-level language (code) into machine language

A

Compile

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

This prevents the execution of the program from stopping at the location but does not remove the breakpoint

A

Disable breakpoint

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

Allows programmers to assign new values to variables while the program is running

A

Locals Window

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

Executes the next statement in the code and immediately halts

A

Step Into

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

The grey bar on the left of the code window

A

Margin Indicator Box

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

The program is suspended (paused) when the breakpoint is reached and the program is now in break mode

A

Suspend Execution

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

Indicates an active breakpoint

A

Solid Breakpoint Circle

17
Q

A bug in the program which does not allow the program to operate correctly but it will cause it to crash. It may cause behaviour which is unintended or undesired

A

Logic error

18
Q

Indicates that the highland line contains the next statement to execute in break mode

A

Yellow Arrow in Break Mode

19
Q

Allows programmers to test and debug only the portion of the code that they have written. This is useful when there are many programmers writing one program

A

Just My Code debugging

20
Q

The information that is displayed as you move the cursor over the variable the programmer would like to look at

A

Quick info Box

21
Q

A type of debugger provided to programmers

A

Visual Studio Debugger

22
Q

Executes the contents of a called method without actually entering the called method

A

Step Over

23
Q

Executes the remaining statements in a method and returns control to the calling method

A

Step Out

24
Q

Allows a programmer to watch the value of the variables as a program executes

A

Watch window

25
Q

An error which can only occur during the running of the program

A

Run-time error