- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
3 Cards in this Set
- Front
- Back
|
Explain encapsulation.
|
Encapsulation means that objects keep their state information private. Rather than directly manipulating an object's data, other objects send requests to the object, in the form of messages, some of which the object may respond to by altering its internal state.
|
|
Explain polymorphism.
|
This ability of different but related objects to respond, each in its own way, to identical messages is called polymorphism.
|
|
Explain inheritance.
|
Inheritance means that objects of one class can derive state and/or behavior from another (base or parent) class.
|