Chapter 10 Flashcards

1
Q

Abstract Data Type

A

(ADT) A class is also known as an abstract data type.

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

aggregation

A

A special form of association that represents an ownership relationship between two classes.

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

boxing

A

Converting a primitive value to a wrapper object is called boxing.

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

class abstraction

A

A technique in software development that hides detailed implementation. Class abstraction hides the implementation of the class from the client; if you decide to change the implementation, the client program will not be affected.

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

class encapsulation

A

Combining of methods and data into a single data structure

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

class’s contract

A

Refers to the collection of methods and fields that are accessible from outside a class, together with the description of how these members are expected to behave.

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

composition

A

An object that consists of other objects. This is called composition.

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

has-a relationship

A

Composition models have a has-a relationship.

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

multiplicity

A

Every class involved in a relationship may specify a multiplicity. A multiplicity could be a number or an interval that specifies how many of the class s objects are involved in the relationship

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

stack

A

A stack is a data structure that holds objects in a last-in first-out fashion

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

unboxing

A

Converting a wrapper object to a primitive value is called unboxing. The reverse conversion is called boxing.

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