ArrayLists and Iterators

Read this chapter about lists and the useful methods that are available for adding and inserting elements into a list. 

2. Fixed-length Array


Answer:

The array object has three cells.

Fixed-length Array

oldArrayOnce an array object has been constructed, the number of cells does not change. You must construct an array with a length that will accommodate all the data you expect. Unfortunately, sometimes this length is hard to determine. A program might need different sizes each time it is run. It would be nice if there were a type of array that allowed you to keep adding data regardless of its original length.

cell of an array is a place where data may be stored. An array may contain many cells. The cells are numbered from 0 up to one less than the length of the array.

An element is the data that has been placed in a cell. (Sometimes an element is called an item, a value, or an entry.)

Question 2:

An array has been completely filled with information:

    String[] list = new String[3]; list[0] = "ant" ; list[1] = "bat" ; list[2] = "cat" ;

After running for a while, the program needs to add information to the array. Will the following statement make the array larger?

list = new String[5];