• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/16

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

16 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)
Encapsulation
The process by which on portion of a program is isolated from other portions with access limited to a generally small number of methods.
Class
A mechanism used in object-oriented programming to encapsulate a block of code and/or data.
Method
The general term used to describe a single service provided by (or behavior shown by) a class.
Interface
The collection of all methods provided by a class. (Warning: interface is also a keyword in Java that has a similar, but slightly different meaning.)
Programming by Contract
The idea that interfaces are specified in terms of contracts wherein a class that provides a service (or more precisely, the programmer of such a class) agrees to provide particular services for clients provided that the client first provides certain data (often expressed as preconditions.)
Preconditions
The stipulations put on the data provided to a method. Unless these stipulations are met, the programmer of the method is under no obligation to do anything. An assertion (precisely worded comment) that specifies what must be true for a method to succeed in its task; usually written in terms of the parameters.
None
Postconditions
A description of the results of a method invocation. It is the job of the programmer of the method to ensure that these results occur whenever the associated preconditions have been met. As assertion that specifies what will be true when a method terminates; usually written in terms of the return value or change of state.
None
Information Hiding
The idea that someone who used a block of code needs to know what the code does but does not need to know how it does it. Information hiding promotes reusable code and is therefore a desirable feature in a software system.
Algorithm
A step-by-step process for solving a problem,
Inheritance
A component of object-oriented design that permits data, methods, and/or algorithms to be shared among different data types that are related.
Runtime Polymorphism
A component of object-oriented design that causes each object in a system to behave in a specialized manner even when its properties are otherwise known only in a general way.
Public
A description of data and/or methods that a class provides for use by software from outside of the class.
Private
A description of data and/or methods that a class provides only for use within that class
Protected
A description of data and/or methods that a class provides only for use within itself and any inherited classes.
Cohesion
The degree to which a portion of a program (i.e. a class) can be viewed as an independent entity that performs a single task. Cohesion in program units is highly desirable.
Coupling
The degree to which one portion of a program depends upon how another portion of the program does its job. Since high degrees of coupling make it difficult to maintain large programs, high degrees of coupling are to be avoided if possible.