Computer Science : Lists

Study concepts, example questions & explanations for Computer Science

varsity tutors app store varsity tutors android store

Example Questions

Example Question #21 : Common Data Structures

Consider the code below:

ArrayList<String> myPhilosophers = new ArrayList<String>();

myPhilosophers.add("Frege");

myPhilosophers.add("Husserl");

myPhilosophers.add("Hegel");

myPhilosophers.add("Bill");

myPhilosophers.add("Frederick");

for(int i = 0; i < myPhilosophers.size(); i++) {

            String s = myPhilosophers.get(i);

            if(s.charAt(0) >= 'H' || s.charAt(3) < 'd') {

                        myPhilosophers.set(i, s.toUpperCase());

            }

}

System.out.println(myPhilosophers);

What is the output for the code above?

Possible Answers:

[FREGE, Husserl, Hegel, Bill, FREDERICK]

[FREGE, HUSSERL, HEGEL, BILL, FREDERICK]

[Frege, HUSSERL, HEGEL, Bill, FREDERICK]

[Frege, Husserl, Hegel, Bill, FREDERICK]

[Frege, HUSSERL, HEGEL, Bill, Frederick]

Correct answer:

[Frege, HUSSERL, HEGEL, Bill, Frederick]

Explanation:

Consider the logic that is in the loop.  The if statement will be reached either if you:

  1. Have a first character that is H or later in the alphabet (in capital letters).
  2. Have a fourth character that is less than d

The first case applies to "Husserl" and "Hegel."  However, the second does not apply to any—not even to "Frederick", for d is equal  to d, not less than it!

Example Question #1 : Lists

Consider the code below:

String[] db = {"Harvey","Plutarch","Frege","Radulphus"};

ArrayList<String> names = new ArrayList<String>();

for(int i = 0; i < 12; i++) {

        names.add(db[i % db.length]);

for(int i = 0; i < 12; i++) {

        if(names.get(i).equals("Frege")) {

                names.remove(i);

        }

}

What is the bug in the code above?

Possible Answers:

The list will use up all of the memory on the machine.

The list will overrun its indices in the second loop.

There are no bugs.

There is an infinite loop in one of the two loops.

The .get method is buggy and likely to crash.  It is better to use an Iterator.

Correct answer:

The list will overrun its indices in the second loop.

Explanation:

In the second loop, when you remove one of the items, you thus make the ArrayList one element shorter.  This means that if you attempt to go through to index 11, you will receive an error at some point, for the list will have "shrunk".  This is like an array out of bounds error, though it will be an IndexOutOfBoundsException exception.

Example Question #1 : Lists

Consider the following code:

public static class Circle {

            private double radius;

            public Circle(double r) {

                        radius = r;

            }          

            public double getArea() {

                        return radius * radius * Math.PI;

            }

}

public static void main(String[] args) {

            ArrayList<Circle> circles = new ArrayList<Circle>();

            for(int i = 0; i < 10; i++) {

                        circles.add(new Circle(i + 4 * 2));

            }

}

Which of the following represents code for iterating through the list circles in order to output the areas of the circles contained therein?

Possible Answers:

for(int i = 0; i < circles.size(); i++) {

            System.out.println(circles.get(i).getArea());

}

for(int i = 0; i < circles.size(); i++) {

            System.out.println(circles[i].get().getArea());

}

for(int i = 0; i < circles.length; i++) {

            System.out.println(circles[i].getArea());

}

for(int i = 0; i < circles.size; i++) {

            System.out.println(circles.get()[i].getArea());

}

for(int i = 0; i < circles.size(); i++) {

            System.out.println(circles[i].getArea());

}

Correct answer:

for(int i = 0; i < circles.size(); i++) {

            System.out.println(circles.get(i).getArea());

}

Explanation:

In the answers, there are only two issues to consider.  On the one hand, look at the loop control statement.  It is some variant on:

circle.size()

and

circles.length

For the List types, you need to use the method size()not length (which you use for arrays).  Likewise, one way to extract elements from the ArrayList type is to use the .get method.  You must use this and not the brackets [] that you use for arrays.

Example Question #21 : Common Data Structures

Which of the following is NOT a valid declaration for an ArrayList?

Possible Answers:

ArrayList list = new ArrayList();

ArrayList list = new ArrayList();

List list = new ArrayList();

ArrayList list = new ArrayList();

List list = new ArrayList();

Correct answer:

ArrayList list = new ArrayList();

Explanation:

ArrayLists are lists of objects, and thus cannot store primitive types. If you wish to store primitive types in an ArrayList, container objects such as Double or Integer must instead be used. The object reference type List is a valid reference type for an ArrayList object.

Example Question #1 : Lists

Which of the following is NOT a difference between the Array class and the ArrayList class in Java?

Possible Answers:

You have to manually add things to an Array by calling a command similar to my_array[some_number] = some_value. With ArrayLists, you use the add() method.

Arrays have a fixed size at creation, while ArrayLists can grow as needed.

To find the number of spots in an Array, you append .length to the end of it. To find the number of spots in an ArrayList, you use the size() method.

All of the other answer choices are differences between Arrays and ArrayLists in Java.

Arrays can store both primitives and Objects, while ArrayLists can only store Objects.

Correct answer:

All of the other answer choices are differences between Arrays and ArrayLists in Java.

Explanation:

In Java, Array is a fixed length data structure, while ArrayList is a variable length Collection Class (other Collection class members include HashMap and HashSet). This means that an Array cannot change its size once it's made; a whole new Array must be made. ArrayLists can change size at will.

Arrays can reference both primitives (like int) and types (like Integer). ArrayLists can only reference types, not primitives. Through a method called "Autoboxing", it can appear that an ArrayList stores a primitive, but what it really is doing is automatically masking the primitive with the type it's like so that it works with the ArrayList.

During the creation of an Array, the .length value is assigned, so whenever you append .length to the end of an array, you get the length (which will never change for the given Array). For ArrayLists, you use the .size() function, which returns the length of the ArrayList. Because the ArrayList size is variable, it is a function (which is why the parenthesis are there at the end).

Java provides the add() function for ArrayLists, which, as the name implies, adds the argument to the ArrayList. Arrays, on the other hand, do not have functions to add elements. To add something to an Array, you'd call something similar to this:

int[] my_array = new int[10];
my_array[0] = 5;

Example Question #1 : Lists

Write a program that iterates through this data structure and prints the data (choose the best answer):

List<List<String>> listOflistOfStrings = new ArrayList<ArrayList<String>>();

Possible Answers:

for (int i = 0; i < listOflistOfStrings.size(); i++) {

List<String> listOfStrings = listOflistOfStrings.get(i);

for (int j = 0; j < listOfStrings.size(); j++) {

System.out.println(listOfStrings.get(j));

}

}

for (List<String> l : listOflistOfStrings) {

List<String> listOfStrings = l;

for (List<String> s : l) {

System.out.println(s);

}

}

for (int i = 0; i < listOflistOfStrings.size(); i++) {

List<String> listOfStrings = listOflistOfStrings.get(i);

for (int j = 0; j < listOflistOfStrings.size(); j++) {

System.out.println(listOfStrings.get(j));

}

}

for (List<String> l : listOflistOfStrings) {

List<String> listOfStrings = l;

for (String s : l) {

System.out.println(s);

}

}

Correct answer:

for (List<String> l : listOflistOfStrings) {

List<String> listOfStrings = l;

for (String s : l) {

System.out.println(s);

}

}

Explanation:

The correct answer uses a ForEach loop. A ForEach loop is recommended for iterating through Lists because Lists contain iterators. ForEach loops use the iterator to iterate through the List. One of the answers used a regular For loop, while the answer was correct, it was not the best choice. 

Learning Tools by Varsity Tutors