Exam 3 Review Questions

Picture ID is REQUIRED for all exams

Use the list of questions below as a guide when studying for Exam 3. It is by no means a comprehensive list of questions.

You are responsible for all material presented in lecture. You are also responsible for all associated reading assignments and material covered in lab.

Answering the applicable "self-test" questions in each chapter of the text is also a good way to review. The answers to the self-test questions are found at the end of each chapter.

Note the exam 3 is a comprehensive final exam. Although the bulk of the questions will come from the topics covered since exam 2, you should be prepared to answer questions about the important principles and techniques of OOP covered throughout the semester (i.e. encapsulation, inheritance, polymorphism, exceptions).

DO NOT EXPECT to see these specific questions on your exam.

For all TRUE/FALSE questions below which are FALSE, explain why.
    I. ArrayList
  1. What are the three main disadvantages of an ArrayList?
  2. What are the main advantages of an ArrayList over an array?
  3. When would it be necessary to use an array rather than an ArrayList?
  4. Why might you choose an array instead of an ArrayList?
  5. Inserting an element into the middle of an ArrayList is a relatively slow operation. Explain why this is so.
  6. Write a Java statement to create an ArrayList to hold DoodleBug objects. The initial capacity of the ArrayList should be 25 DoodleBugs.
  7. Describe the operations of the ArrayList methods get(index), add(object), set(index, object), add(index, object)
  8. What potential programming "pitfall" does the ArrayList clone method present?
  9. True/False
  10. An ArrayList object has a fixed size.
  11. You can use any primitive type as the base type of an ArrayList class.
  12. ArrayList objects do not have the array square-bracket notation.
  13. Inheritance is the reason why some parameters of the ArrayList class are of type Base_Type and others of type Object.
  14. The Type parameter is always indicated as a T.
  15. The definition of a "parameterized class" is a class with one or more type parameters.
  16. An ArrayList uses an array to store its elements
  17. II. Generics
    Use the following class definition when answering the questions below.
    public class Utility
    {
       // no instance variables
       
       //.....
    }
    
  18. What attribute(s) of a method make it a candidate to be a generic method of the Utility class above?
  19. Write the method header for a generic method named First that returns the the first object from an ArrayList of any base type as it would appear in the Utility class above.
  20. Write a small code snippet (variable declarations and method call) that shows how First would be called from main for an ArrayList of objects of type Bob.
  21. Why is appropriate to use generic programming techniques to implement container classes?
  22. Describe the use of "wildcards" when defining generic classes or methods. In particular, what is the meaning of <?>, <? extends T> and <? super T>? Give an example definition that uses each of these.
  23. Explain why a generic class or method may require its type parameter to implement a particular interface
  24. Write a generic class definition for a class named Box that contains objects of any type and supports the following operations. What design decisions must be considered for these Box operations?
    1. Create a new Box. The capacity is specified by the user when the box is created.
    2. Puts an item into the Box
    3. Removes an item from the Box
    4. Tells how many items are in the Box
    5. Empties the box
    6. Given the class definition for Box above

    7. Write a declaration for a Box that holds 10 Integers
    8. Write a declaration for Box that holds 25 XYZ objects

    III. Containers and Iterators
  25. Define "container class" and give two examples from the Java library.
  26. What Java mechanism is used to define containers?
  27. Define iterator. What is the purpose of an iterator?
  28. Iterators and the "for-each" loop can both be used to access the elements of any container.
    Under what circumstances would you choose iterators instead of the for-each loop?
    Under what circumstances would you choose the for-each loop instead of an iterator.
  29. Given the code fragment below, write a loop using iterators that prints the contents of the ArrayList
        List<Integer> myList = new ArrayList<Integer>( );
    	
        myList.add( 42 );
        myList.add( 57 );
        myList.add( 95 );
        myList.add( 6 );
        myList.add( 12 );
        myList.add( 105 );
        
         // write your loop here
    
    
  30. What is the output from your loop?
  31. How would the for-loop you wrote in the question above be different if the container were a LinkedList instead of an ArrayList?
  32. Rewrite your loop to print the ArrayList using an "enhanced for-loop".
  33. Indicate which of the following define an interface and which are concrete classes. For each concrete class, indicate which interface(s) it implements.
    1. Collection<T>
    2. LinkedList<T>
    3. Set<T>
    4. HashSet<T>
    5. TreeSet<T>
    6. ArrayList<T>
    7. List<T>
  34. What is the primary difference between Set<T> and List<T>?
  35. What is the primary difference between ArrayList<T> and LinkedList<T>?
  36. True/False
  37. Some containers handle duplicate elements; others do not
  38. You may instantiate multiple iterators for the same container in the same program/function.
  39. Iterators are created by the container.
  40. The two types of Java containers are Collections and Maps
  41. Java Collection cannot be used to hold primitive types. That's why "wrapper classes" were invented for the primitives.

Sorry! We could not find what you were looking for

Try going back to the main page here

 
4
4
0
0
0
0