Collections

Collections

University

10 Qs

quiz-placeholder

Similar activities

Quiz 12-09-25 ECE

Quiz 12-09-25 ECE

University

15 Qs

IT Quiz Bee 2025 - DIFFICULT

IT Quiz Bee 2025 - DIFFICULT

University

10 Qs

Blockchain Quiz

Blockchain Quiz

University

15 Qs

Quiz Struktur Data

Quiz Struktur Data

University

12 Qs

Linked List Quiz

Linked List Quiz

University

10 Qs

Big Data

Big Data

University

10 Qs

 uji coba Strategi Algoritma dan Pemrograman

uji coba Strategi Algoritma dan Pemrograman

11th Grade - University

15 Qs

Python Programming Competition

Python Programming Competition

University

12 Qs

Collections

Collections

Assessment

Quiz

Information Technology (IT)

University

Medium

Created by

Yosuva Sirumani

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

1. Which interface is the root interface in the Java Collection hierarchy?

A. Collection

B. Map

C. Iterable

D. List

2.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

2. What is the main difference between ArrayList and LinkedList?

A. ArrayList is thread-safe, LinkedList is not

B. LinkedList allows duplicate elements, ArrayList doesn't

C. ArrayList uses a dynamic array, LinkedList uses nodes

D. LinkedList is faster for indexing

3.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

3. Which of these classes implements the Set interface?

A. HashMap

B. ArrayList

C. HashSet

D. TreeMap

4.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

4. Which method is used to remove all elements from a Collection?

A. clear()

B. deleteAll()

C. removeAll()

D. erase()

5.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

5. What will the following code output?
Set<String> set = new HashSet<>();

set.add("Apple");

set.add("Banana");

set.add("Apple");

System.out.println(set.size());

A. 1

B. 2

C. 3

D. Compilation Error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

6. Which class guarantees that the order of elements will remain the same as inserted?

A. HashSet

B. TreeSet

C. LinkedHashSet

D. PriorityQueue

7.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

7. What is the output of this code snippet?
Map<String, Integer> map = new HashMap<>();

map.put("A", 100);

map.put("B", 200);

map.put("A", 300);
System.out.println(map.get("A"));

A. 100

B. 200

C. 300

D. Null

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?