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

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;

9 Cards in this Set

  • Front
  • Back
Actual parameter
The values or variables listed inside the parenthesis of a method call.
Constructor
A special class method used to set up an object- which typically means initializing the object's instance variables.
Formal parameter
The variables declared in the method header which accept values from the actual parameters in the method call.
Instantiation
The process of creating an object from a class.
Local variable
A variable declared and used inside a particular group of code.
Method header
The first line of a method.
Method
A self-contained block of program code- similar to a procedure.
New operator
This keyword is used to allocate memory for an object.
Return statement
The line of code in a method body that sends a value from the method back to the line of code that called it.