8.5

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Composite Type

A data type that combines several properties into one type, containing methods, functions, or procedures associated with it.

2
New cards

Subtype

A type that is derived from a supertype and inherits all supertype methods and properties.

3
New cards

Supertype

A base class from which subtypes are derived, providing inheritance of methods and properties.

4
New cards

ORM (Object Relational Mapping)

A software layer that facilitates integration between programming languages and relational databases.

5
New cards

CREATE TYPE AS OBJECT

A statement used to specify the code or body of each function or procedure associated with an object type.

6
New cards

NOT FINAL

A keyword indicating that a supertype can have subtypes and is not restricted from being inherited.

7
New cards

OVERRIDING

A keyword used to indicate that a derived subtype method redefines the behavior of an inherited method.

8
New cards

Address Type

An object type that includes properties like street, city, state, postal code, and a member function for formatting the address.

9
New cards

GlobalAddressType

A subtype of AddressType that adds the country property and overrides the FormatAddress function.

10
New cards

TotalCompensation

A member function that calculates the total compensation for an Employee or ExecutiveEmployee.