Big idea 1: Creative development Flashcards

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

syntax error

A

A mistake in typed code that violates the rules of the programming language. Typically, code with syntax errors will not run.

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

logic error

A

A mistake in an algorithm or program that causes it to behave unexpectedly or return the incorrect value.

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

run-time error

A

A mistake in a program that happens only when the program is actually run, such as a program attempting to access memory that does not exist.

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

overflow error

A

Error that results when the number of bits is not enough to represent the number

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

Integer representation

A

An integer is any number that can be written without a fractional component. Computer represents all data with bits(sequence of 0s and 1s)

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

Floating-point representation

A

Computer languages typically use floating-point representation for non-integers (and sometimes integers, too). It’s similar to “scientific notation”, a representation you might know from other studies(256=1×2^8).

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