Java Maps Review

Java Maps Review

Assessment

Flashcard

Computers

11th Grade - University

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

16 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which of the following statement about Set is true? A HashSet cannot have a null value. Set allows duplicate values. Set allows null values but only single occurrence. Set extends the Java.util.collection interface.

Back

Set extends the Java.util.collection interface.

2.

FLASHCARD QUESTION

Front

Which interface of the java.util package offers the specified behavior: -Entries are organized as key/value pairs. -Duplicate entries replace old entries. -Entries are sorted using a Comparator or the Comparable interface?

Back

SortedMap

3.

FLASHCARD QUESTION

Front

Back

{1=C, 2=JavaEE, 3=Python, 4=PHP}

4.

FLASHCARD QUESTION

Front

Back

{null=null, a=null, b=JavaSE, c=PHP, d=Python}

5.

FLASHCARD QUESTION

Front

Back

5

6.

FLASHCARD QUESTION

Front

Which of the following TreeMap instantiations would create a TreeMap that could store String-Integer pairs? Options: TreeMap<String,Integer> map; map = new TreeMap <String,Integer>();, TreeMap<Integer,String> map; map = new TreeMap <Integer,String>();, TreeMap<Double,String> map; map = new TreeMap <Double,String>();, TreeMap<Boolean,String> map; map = new TreeMap <Boolean,String>();

Back

TreeMap<String,Integer> map;
map = new TreeMap <String,Integer>();

7.

FLASHCARD QUESTION

Front

Which of the following Map methods will add a pair to a Map? Options: add(), get(), set(), put(), append()

Back

put()

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?