U13.1 data representation Flashcards
user defined data type
- derived from one or more existing datatypes
- used to extend the built-in datatypes
- programmer’s requirement
why are user defined data types necessary
- no suitable datatype is provided by the language used
- if a programmer needs a specific datatype
- that meets program requirements
non-composite datatype
- single datatype that does not refer to another datatype
- e.g: enumerated, pointer, real, string, char, boolean
composite datatype
- datatype that refers to other datatypes
- data type is constructed from other datatypes
- e.g: record, list, set, array, class, queue, linked list, dictionary
record
collection of related items which may be of different datatypes
list
indexed collection that can contain different datatypes
set
supports mathematical operation
class
gives properties and methods for an object
array
collection of items of the same datatype
enumerated datatype
- non-composite
- defined by a given list of all possible values
- in an order
pointer datatype
- non-composite
- used to reference a memory location
record datatype
- composite datatype
- a collection of multiple datatypes
declaring a range
- 0-89
- DECLARE number : 0..89
floating point representation
representation of real numbers
mantissa
the significant digits of floating point number
exponent
the power of base 2 (that the mantissa is raised to)
normalization
a technique that is used to make your data more accurate
random file
- can be read/write at the same time
- contains a collection of data
- normally as records of a fixed length
- can be thought of as having a file pointer that can be moved to any location or address of the file
- record at that location can then be read or written
dereferencing
getting the value in an address