Collections

Collections

University

10 Qs

quiz-placeholder

Similar activities

Структурированный тип данных массив

Структурированный тип данных массив

10th Grade - University

11 Qs

BÀI F10. ĐỊNH KIỂU CSS CHO SIÊU LIÊN KẾT VÀ DANH SÁCH

BÀI F10. ĐỊNH KIỂU CSS CHO SIÊU LIÊN KẾT VÀ DANH SÁCH

University

10 Qs

Konteynerlar (C++)

Konteynerlar (C++)

University

12 Qs

Quiz sobre Programación Orientada a Objetos

Quiz sobre Programación Orientada a Objetos

University

10 Qs

Uji Pemahaman Berpikir Komputasioal

Uji Pemahaman Berpikir Komputasioal

8th Grade - University

10 Qs

Yelp-Review

Yelp-Review

University

12 Qs

10-mavzu

10-mavzu

University

15 Qs

Computational Thinking Quiz - Grade 7

Computational Thinking Quiz - Grade 7

7th Grade - University

10 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?