Question: Array lists are objects that, like arrays, provide you the ability to store items sequentially and recall items by index. Working with array lists involves
Array lists are objects that, like arrays, provide you the ability to store items sequentially and recall items by index. Working with array lists involves invoking ArrayList methods, so we will need to develop some basic skills. Lets start with the code below: import java.util.ArrayList; public class ArrayListRunner public static void main(String[] args) { ArrayList names = new ArrayList(); System.out.println(names); } The main method imports java.util.ArrayList and creates an ArrayList that can hold strings. It also prints out the ArrayList and, when it does, we see that the list is empty: [ ]. Complete the following tasks by adding code to this skeleton program. If you are asked to print a value, provide a suitable label to identify it when it is printed.
a) Invoke add() to enter the following names in sequence: Alice, Bob, Connie, David, Edward, Fran, Gomez, Harry. Print the ArrayList again.
b) Use get() to retrieve and print the first and last names.
c) Print the size() of the ArrayList.
d) Use size() to help you print the last name in the list.
e) Use set() to change Alice to Alice B. Toklas. Print the ArrayList to verify the change.
f) Use the alternate form of add() to insert Doug after David. Print the ArrayList again.
g) Use an enhanced for loop to print each name in the ArrayList.
h) Create a second ArrayList called names2 that is built by calling the ArrayList constructor that accepts another ArrayList as an argument. Pass names to the constructor to build names2. Then print the ArrayList.
i) Call names.remove(0) to remove the first element. Print names and names2. Verify that Alice B. Toklas was removed from names, but not from names2.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
