Sequential Processing Flashcards

1
Q

An error, flaw, failure, or fault in a computer program or system that causes it to produce an incorrect or unexpected result, sometimes called a logic error.

A

Bug

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

A type of exception (execution error) that a compiler will check for during the compile process, such as the possibility of a file input error, where the code must explicitly indicate how this possible exception will be handled, either by using a “throws” statement or by using a “try catch” block.

A

Checked Exceptions

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

A methodical process of finding and reducing bugs, defects, or errors in a computer program or a piece of electronic hardware.

A

Debugging

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

A situation in a program that indicates a flaw in the source code, either syntax-based (punctuation or grammar), run-time (occurs during execution such as file not found, or division by zero), or logic based where the program runs but does not produce the desired results.

A

Error

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

An error in programming that is “thrown” when something bad happens in a program, usually during runtime. In Java, there is a whole family of Exceptions, like IndexOutOfBoundsException or FileNotFoundException. Generally there are two types: checked and unchecked, checked meaning they are checked during compile time, and unchecked when they are thrown during runtime.

A

Exception

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

A application used in programming that combines the source code editing process, compiling and program execution process into one easy-to-use application. Some common ones are Eclipse, NetBeans, JCreator, and BlueJ.

A

Integrated Development Environment (IDE)

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

An error in programming that is characterized by the misspelling of a word, or reserved words listed out of order.

A

Lexical Error

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

An error that occurs during the execution of a program.

A

Runtime Error

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

The basic control structure in programming where commmands are executed on after another, in the order in which they are listed.

A

Sequential Processing

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

An error associated with punctuation, spelling or ramming in a computer program.

A

Syntax Error

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

The process of debugging a program by detecting and correcting errors in syntax and logic.

A

Troubleshooting

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