sonalihande81
Quiz von , erstellt am more than 1 year ago

Java SCJP Collection 1

82
1
0
sonalihande81
Erstellt von sonalihande81 vor fast 9 Jahre
Schließen

Java SCJP Collection 1

Frage 1 von 15

1

Which collection class(es) allows you to grow or shrink its size and provides indexed access to
its elements, but whose methods are not synchronized? (Choose all that apply.)

Wähle eine der folgenden:

  • java.util.HashSet

  • java.util.List

  • java.util.ArrayList

  • java.util.Vector

  • java.util.PriorityQueue

  • java.util.LinkedHashSet

Erklärung

Frage 2 von 15

1

Which one of the following is true about natual order and insertion order ?

Wähle eine oder mehr der folgenden:

  • insertion order means that the order in which the items are inserted into the collection

  • insertion order is determined by seeing if the element is inserted into the collection by using the insert() or add().

  • Natural order is different from insertion order is that the order incase of natural is determined by observing the data in the object in context

  • Natural order is not same as insertion order

Erklärung

Frage 3 von 15

1

Wchich implementation of Set would you choose if the you want the iterator of set would geive you objects in the order it were inserted ?

Wähle eine der folgenden:

  • LinkedHashSet

  • TreeSet

  • HashSet

Erklärung

Frage 4 von 15

1

What is the data structure that a Set uses to store its elements ?

Wähle eine der folgenden:

  • array

  • object

  • Map

  • ArrayList

Erklärung

Frage 5 von 15

1

Set allows at most one null element ?

Wähle eine der folgenden:

  • True

  • False

Erklärung

Frage 6 von 15

1

If you were to use a List implementation,but not sure which one to, bacause the requirement is not yet clear. In this case which List implementation will you use ?

Wähle eine der folgenden:

  • ArrayList

  • Vector

  • LinkedList

Erklärung

Frage 7 von 15

1

If you were to store objects into an implementation of List which happens only once in the entire lifecycle of the product,but reading these objects inside the List implementation is quite high,then which one would you use ?

Wähle eine der folgenden:

  • Vector

  • LinkedList

  • ArrayList

Erklärung

Frage 8 von 15

1

Which of the following implementation will you use if you were to insert elements at any position in the collection ?

Wähle eine der folgenden:

  • ArrayList

  • LinkedList

  • Vector

Erklärung

Frage 9 von 15

1

The EMPTY_LIST field and teh emptyList() method does return an empty immutable List .(The same also applies to
EMPTY_SET,EMPTY_MAP and corresponding methods emptySet,emptyMap). Which of the following is/are true ?

Wähle eine oder mehr der folgenden:

  • There is no difference between the field and emptyList() ways to fetch an empty immutable list

  • The field gives you a non type-safe empty immutable object where are the method return type-safe empty immutable object of collection

  • The method to get the empty immutable collections are not static, so we need to create an object of Collections class in-order to call these methods,so fields like EMPTY_XXX are better choice if one doesn't want to create object of Collections.

  • The emptyXxx() methods actually returns the EMPTY_XXX fields.

Erklärung

Frage 10 von 15

1

Which of the following is true about creating an empty List, but immutable ?

Wähle eine oder mehr der folgenden:

  • final List immutableEmptyList=new ArrayList();

  • List immutableEmptyList=Collections.unmodifiableList(new List());

  • List immutableEmptyList=Collections.EMPTY_LIST

  • List immutableEmptyList=Collections.unmodifiableList(new ArrayList());

Erklärung

Frage 11 von 15

1

How do you get immutable object of a collection ? For example if you were to write an API which return a List or a Set or a Map when a method is called, but you also want that you don't want the client of your API to add or delete any object in the returned collection ?

Wähle eine der folgenden:

  • Use Collections.immutableCollection() method.

  • Use the Collections.unmodifiableXxxx() method with the collection as an argument,which returns an immutable object of specific type.

Erklärung

Frage 12 von 15

1

Enumeration is an interface helps to iterate collection,but it can't remove any element the collection it is iterating

Wähle eine der folgenden:

  • True

  • False

Erklärung

Frage 13 von 15

1

which of the following are false about Collections and Collection ?

Wähle eine der folgenden:

  • Collections is a utility class

  • Collection is an interface to Set and List

  • Collections is a special type of collection which holds Set of collections

  • Both Collections and Collection entity belongs to java.util package.

Erklärung

Frage 14 von 15

1

Which of the following Collection are synchronized by nature ?

Wähle eine oder mehr der folgenden:

  • Vector

  • SortedSet

  • Hashtable

  • HashMap

Erklärung

Frage 15 von 15

1

Which of the following are true about ListIterator and Iterator ?

Wähle eine oder mehr der folgenden:

  • Iterator can traverse in forward direction only

  • ListIterator can traverse lists in both direction

  • Iterator can do operations like modifying the items it holds.

  • ListIterator extends the Iterator interface

  • Iterator can remove the elements

Erklärung