Java Collections Dr LJK

Java Collections Dr LJK

Professional Development

10 Qs

quiz-placeholder

Similar activities

Финальная викторина Python

Финальная викторина Python

Professional Development

8 Qs

JS Quiz

JS Quiz

Professional Development

14 Qs

interface and abstract class

interface and abstract class

Professional Development

11 Qs

Collections, JDBC/RDBMS

Collections, JDBC/RDBMS

Professional Development

10 Qs

PreTrainingJavaScript

PreTrainingJavaScript

Professional Development

9 Qs

WCF Day-7 JDBC, Collection, List and Set

WCF Day-7 JDBC, Collection, List and Set

Professional Development

10 Qs

Quiz Collections in Java

Quiz Collections in Java

Professional Development

10 Qs

Moringa JavaScript Arrays

Moringa JavaScript Arrays

5th Grade - Professional Development

10 Qs

Java Collections Dr LJK

Java Collections Dr LJK

Assessment

Quiz

Professional Development

Professional Development

Hard

Created by

Jayakumar Loganathan

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

-Contains no duplicate elements.

-Can contain at most one Null value.

-Elements are not key-value pairs.

-Accessing an element can be almost as fast as performing a similar operation on an array.


Which of these classes provides the specified features?

LinkedList

TreeMap

HashSet

LinkedHashMap

HashMap

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

4

5

6

12

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

-Entries are not organized as key/value pairs.

-Duplicate entries are rejected.

Which interface of the java.util package offers the specified behavior?

List

Map

Set

None of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

[Computer, Network, Networks, Programming, Security]

[Computer, Programming, Network, Networks, Programming, Security]

[Computer, Programming, Computer, Networks, Network, Security]

[Computer, Networks, Network, Programming, Security]

5.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following is/are correct statements?

HashSet class implements the Set interface

HashSet does not allow duplicate elements that means you can not store duplicate values in HashSet.

HashSet permits to have a single null value.

HashMap does not allow duplicate keys however it allows to have duplicate values.

HashMap and HashSet are threadsafe

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

List listNames = new ArrayList();

listNames.add("Tom");

listNames.add("Mary");

listNames.add("Peter");


String name2 = (String) listNames.get(1);

System.out.println(name2);

What is the output of the above code

Tom

Mary

Peter

raises Exception

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the list nums if it is initially [5, 3, 1] and the following code is executed?

nums.add(6);

nums.add(0, 4);

nums.remove(1);

[4, 3, 1, 6]

[5, 3, 1, 6]

[4, 3, 6]

[4, 5, 3, 6]

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?