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

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;

7 Cards in this Set

  • Front
  • Back
Array
A named list of data items that all have the same name.
Element
A value stored in an individual memory location in an array.
Parallel array
An array whose elements correspond to the elements of another array.
Pass by reference
The process in which variables are passed such that the memory address is copied for use inside the method; thus any changes made to the variable inside the method change the variable outside the method as well.
Pass by value
The process in which variables are passed such that a copy of the value is created for use inside the method; thus any changes made to the variable inside the method will not change the variable outside the method.
Subscript
An integer that specifies one of an array's elements.
Two-dimensional array
An array whose elements are specified by two indexes- often visualized as a table or a matrix.