• 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/20

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;

20 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)
Data Type
The values and corresponding operations defined within a programming language
The ___ and ___ defined within ____
ADT
Abstract Data Type
A is for Abstract
Abstract Data Type
A specification for a data set and corresponding operations independent of any programming language
A ___ for a ___ and ___ independent of ___
Data Structure
An implementation of an abstract data type within a programing language
An ___ of an ___ within a ___
Collection
An object that groups other objects while providing services.
An ___ that ___ other ___ while providing ___.
Container (Java)
An object that extends the AWT (Abstract Window Toolkit) standard class Container
An object that extends ___.
Bag (Java)
A finite collection of unordered, possibly duplicate objects.
A ___ of ___, possibly ____ objects.
CRC Card
A card that names the Class and lists the Responsibilities and Collaborations of that class.
A card that names the ___ and lists the ___ and ___ of that class.
Java Collection Framework
A subset of the Java Class Library that represents and works with collections.
A ___ of the ___ that ___ and ___ with ___.
JCL
Java Class Library
J is for Java
Java Class Library
The set of dynamically loadable libraries of standard classes and interfaces that can be called at run time.
The set of dynamically loadable ___ of ___ ___ and ___ that can be called at run time.
Set (ADT)
A bag that does not allow duplicates

A ___ that does not allow ___
Set (Java)
An interface which belongs to the java.util package
An ___ which belongs to the ___ package
array based implementation
when an array organizes data
core methods/group
basic methods needed for testing
Stack
organizes entries in order they were added, Last-in-first-out (LIFO).
top entry
the newest item in a stack
push
adds entry to top of stack
pop
removes and returns top item of stack
peek
returns top item in stack without modifying stack