Java SCJP Collection 1

Descripción

Java SCJP Collection 1
sonalihande81
Test por sonalihande81, actualizado hace más de 1 año
sonalihande81
Creado por sonalihande81 hace casi 9 años
77
1

Resumen del Recurso

Pregunta 1

Pregunta
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.)
Respuesta
  • java.util.HashSet
  • java.util.List
  • java.util.ArrayList
  • java.util.Vector
  • java.util.PriorityQueue
  • java.util.LinkedHashSet

Pregunta 2

Pregunta
Which one of the following is true about natual order and insertion order ?
Respuesta
  • 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

Pregunta 3

Pregunta
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 ?
Respuesta
  • LinkedHashSet
  • TreeSet
  • HashSet

Pregunta 4

Pregunta
What is the data structure that a Set uses to store its elements ?
Respuesta
  • array
  • object
  • Map
  • ArrayList

Pregunta 5

Pregunta
Set allows at most one null element ?
Respuesta
  • True
  • False

Pregunta 6

Pregunta
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 ?
Respuesta
  • ArrayList
  • Vector
  • LinkedList

Pregunta 7

Pregunta
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 ?
Respuesta
  • Vector
  • LinkedList
  • ArrayList

Pregunta 8

Pregunta
Which of the following implementation will you use if you were to insert elements at any position in the collection ?
Respuesta
  • ArrayList
  • LinkedList
  • Vector

Pregunta 9

Pregunta
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 ?
Respuesta
  • 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.

Pregunta 10

Pregunta
Which of the following is true about creating an empty List, but immutable ?
Respuesta
  • final List immutableEmptyList=new ArrayList();
  • List immutableEmptyList=Collections.unmodifiableList(new List());
  • List immutableEmptyList=Collections.EMPTY_LIST
  • List immutableEmptyList=Collections.unmodifiableList(new ArrayList());

Pregunta 11

Pregunta
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 ?
Respuesta
  • Use Collections.immutableCollection() method.
  • Use the Collections.unmodifiableXxxx() method with the collection as an argument,which returns an immutable object of specific type.

Pregunta 12

Pregunta
Enumeration is an interface helps to iterate collection,but it can't remove any element the collection it is iterating
Respuesta
  • True
  • False

Pregunta 13

Pregunta
which of the following are false about Collections and Collection ?
Respuesta
  • 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.

Pregunta 14

Pregunta
Which of the following Collection are synchronized by nature ?
Respuesta
  • Vector
  • SortedSet
  • Hashtable
  • HashMap

Pregunta 15

Pregunta
Which of the following are true about ListIterator and Iterator ?
Respuesta
  • 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
Mostrar resumen completo Ocultar resumen completo

Similar

Universidades de Latinoamérica
Diego Santos
Paisajes de España
Joaquín Ruiz Abellán
Diferencias entre la Química y Física
maya velasquez
Fichas Verbos inglés - español (131)
JOWANI BELLO MELO
Todos mis RECURSOS...
Ulises Yo
Verb to be - Present simple test
r.fernandez7858044
Las Figuras y Silencios
mariajesus camino
Sistema Nervioso
Carlos Enrique Armas Montoro
Getting started with GoConqr Groups
GoConqr Team-Liliana
Habilidades del Pensamiento
Kimm Fdez
2D Ancho y altura en Autocad
Yeshua Garzón Ramírez