Chapter 14 - The Movement to Objects Flashcards

1
Q

What are object-oriented systems?

A

Object-oriented systems focus on capturing the structure and behavior of information systems in little modules, also known as objects, that encompass both data and processes.

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

What is a class?

A

A class is the general template used to define and create specific instances, or objects. Every object (or instance) is part of a class.Classes themselves have attributes that describe them, and methods.

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

What is a method?

A

A method is an action that an object can perform.

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

What is a message?

A

A message is information that’s sent to an object in order to trigger a method.

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

What is encapsulation?

A

Encapsulation is simply the process of combining of process and data into a single entity.

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

What is information hiding?

A

Information hiding is the principle that only the information required to use a software module be published to the user of said module.

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

What is inheritance?

A

Inheritance is the idea that classes can inherit attributes or methods from “higher-level”, more general classes.

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

What is a superclass? What about a subclass?

A

A superclass is a collection of common attributes and methods. A subclass is a more specific version of a superclass, adding attributes and methods to the subclass that are unique to it.

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

What is polymorphism?

A
Polymorphism is the principle that the same message can be interpreted differently by different classes of objects. An INSERT command means something different to the "customer" class than it does to the "reservation" class.
Polymorphism is made possible through dynamic binding, which delays identifying the type of an object until run-time, and therefore delays the need for a specific method being chosen until the system is actually running.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a concrete class?

A

A concrete class is any class that has instances. Contrast to abstract classes, which cannot have instances.

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

What methodologies can be used with object-oriented approaches?

A

Object-oriented approaches can be used with any traditional methodologies, and are most commonly used with iterative development RAD methodologies.

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

What is UML?

A

UML is unified modeling language, a standard set of diagramming techniques used in object-oriented systems analysis and design.

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

What is required for an approach to be considered “object-oriented”?

A

For an approach to be object-oriented, it must be:

  • Use case driven, that is, use cases must be the primary tool for modeling.
  • Architecture-centric, that is, the architecture of the system drives all parts of the system (including things like documentation, construction, specification, etc)
  • Iterative and Incremental, that is, there is continuous development and testing throughout the entire life of the project.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly