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

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;

10 Cards in this Set

  • Front
  • Back

What is the last legal subscript that can be used with the following array?




int values[5];

4

The individual values contained in array are known as:

elements

By using the same ________ you can build relationships between data stored in two or more arrays.

subscript

A two-dimensional array can have elements of ________ data type(s).

one

The ________ is automatically appended to a character array when it is initialized with a string constant.

null terminator

A two-dimensional array is like ________ put together.

several identical arrays

An array can store a group of values, but the values must be:

the same data type

What will the following code display?




int numbers[ ] = {99, 87, 66, 55, 101 };


cout << numbers[3] << endl;

55

The name of an array stores the ________ of the first array element.

memory address

To assign the contents of one array to another, you must use:

a loop to assign the elements of one array to the other array