3. Definitions Flashcards

1
Q

Arithmetic Logic Unit (ALU)

A

Hardware that performs addition, subtraction, and usually logical operations such as AND and OR.

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

dividend

A

A number being divided.

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

divisor

A

A number that the dividend is divided by.

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

quotient

A

The primary result of a division; a number that when multiplied by the divisor and added to the remainder produces the dividend.

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

remainder

A

The secondary result of a division; a number that when added to the product of the quotient and the divisor produces the dividend.

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

scientific notation

A

A notation that renders numbers with a single digit to the left of the decimal point.

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

normalized

A

A number in floating-point notation that has no leading 0s.

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

floating point

A

Computer arithmetic that represents numbers in which the binary point is not fixed.

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

fraction

A

The value, generally between 0 and 1, placed in the fraction field. The fraction is also called the mantissa.

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

exponent

A

In the numerical representation system of floating-point arithmetic, the value that is placed in the exponent field.

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

overflow (floating-point)

A

A situation in which a positive exponent becomes too large to fit in the exponent field.

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

underflow (floating-point)

A

A situation in which a negative exponent becomes too large to fit in the exponent field.

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

double precision

A

A floating-point value represented in a 64-bit doubleword.

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

single precision

A

A floating-point value represented in a 32-bit word.

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

exception. Also called interrupt.

A

An unscheduled event that disrupts program execution; used to detect overflow.

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

interrupt

A

An exception that comes from outside of the processor. (Some architectures use the term interrupt for all exceptions.)

17
Q

guard

A

The first of two extra bits kept on the right during intermediate calculations of floating-point numbers; used to improve rounding accuracy

18
Q

round

A

Method to make the intermediate floating-point result fit the floating-point format; the goal is typically to find the nearest number that can be represented in the format. It is also the name of the second of two extra bits kept on the right during intermediate floating-point calculations, which improves rounding accuracy.

19
Q

units in the last place (ulp)

A

The number of bits in error in the least significant bits of the significand between the actual number and the number that can be represented.

20
Q

sticky bit

A

A bit used in rounding in addition to guard and round that is set whenever there are nonzero bits to the right of the round bit.

21
Q

fused multiply add

A

A floating-point instruction that performs both a multiply and an add, but rounds only once after the add.