13 Data Representation Flashcards

1
Q

User-defined data types

A

data type based on an existing data type or other data types that have been defined by the programmer

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

Non-composite data types

A

data type that doesn’t reference any other data type

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

Enumerated data type

A

a non-composite data type defined by a given list of all possible values that has implied order.

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

Pointer data type

A

a non-composite data type that uses the memory address of where the data is stored

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

Set

A

a given list of unordered elements that can use set theory operations such as intersection and union

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

Serial File Organisation

A

method of file organization in which data records are physically stored in a file in the order they were added

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

Sequential File Organization

A

method of file organization in which data records are stored physically in a file in a given order

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

Random File Organization

A

method of file organization in which data records are physically stored in a file in any available position, a hashing algorithm is is used to find the location of the file stored

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

Hashing Algorithm

A

mathematical formula used to perform calculation on the key field of the record the result of the calculation gives the address where the record should be found

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

File Access

A

method used to physically find a record in a file

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

Sequential Access

A

method of file access in which records are searched one after another from the start till required file is found

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

Direct Access

A

method of file access in which record can be physically found without reading other records.

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

Mantissa

A

fractional part of a floating point number

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

Exponent

A

power of 2 that the mantissa is raised to in a floating point number

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

Binary Floating-Point Number

A

a binary number written in the form M x 2^e (M is mantissa and e is exponent)

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

Normalisation

A

method used to improve the precision of binary floating point numbers, 0.1 is positive format and 1.0 is negative format

17
Q

Overflow

A

result of carrying out a calculation resulting in a value too large for allocated word size in computer

18
Q

Underflow

A

result of carrying out a calculation resulting in a value too small for allocated word size in computer