QUESTION 11 Consider the following code snippet: What output will be produced wh
ID: 3806411 • Letter: Q
Question
QUESTION 11
Consider the following code snippet:
What output will be produced when this code is executed?
ab,abc,a,
a,abc,ab,
a,ab,abc,
abc,ab,a,
QUESTION 12
A collection without an intrinsic order is called a ____.
list
stack
set
queue
QUESTION 13
The term ____ is used in computer science to describe an access pattern in which the elements are accessed in arbitrary order.
sequential access
random access
sorted access
arbitrary access
QUESTION 14
Consider the code snippet shown below. Assume that employeeNames is an instance of type LinkedList<String>.
Which element(s) of employeeNames does this loop process?
no elements
all elements
elements meeting a condition
the most recently added elements
QUESTION 15
What type of access does a LinkedList provide for its elements?
sequential
semi-random
random
sorted
QUESTION 16
Complete the following code, which is intended to print out all key/value pairs in a map named myMap that contains String data for student IDs and names:
Map<String, String> mapKeySet = myMap.keySet();
Set<String, String> mapKeySet = myMap.keySet();
Set<String> mapKeySet = myMap.getKeySet();
Set<String> mapKeySet = myMap.keySet();
QUESTION 17
Which method is NOT part of the ListIterator generic class?
hasNext
hasMore
hasPrevious
add
1 points
QUESTION 18
What can a generic class be parameterized for?
properties
iterators
type
methods
QUESTION 19
Consider the following code snippet:
What will be printed when this code is executed?
[Mary, John, Robert, Sue]
[Mary, John, Sue]
[Mary, Robert, Sue]
[John, Robert, Sue]
QUESTION 20
You need to access values in the order in which they were added (first in, first out), and not randomly. Which collection type should you use?
Map
Hashtable
Stack
Queue
ab,abc,a,
a,abc,ab,
a,ab,abc,
abc,ab,a,
Explanation / Answer
Question 11:
a,abc,ab,
Stack is last in first out data structure
Question 12:
set
In java set interface does not provide any ordering guarantee.
Question 13:
random access
Question 14:
all elements
Question 15:
sequential
Question 16:
Set<String> mapKeySet = myMap.keySet();
Question 17:
hasMore
Question 18:
type
Question 19:
[Mary, Robert, Sue]
Question 20:
Queue
Queue is FIFO Structure.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.