TestSample

TestSample

University - Professional Development

3 Qs

quiz-placeholder

Similar activities

Overwatch Quiz

Overwatch Quiz

3rd Grade - Professional Development

5 Qs

Java test #1 #ITsubbotnik 2019

Java test #1 #ITsubbotnik 2019

University - Professional Development

5 Qs

Quiz 2 - Sharing Session

Quiz 2 - Sharing Session

Professional Development

8 Qs

Java Lesson 6

Java Lesson 6

5th Grade - University

8 Qs

Связи в таблицах mySQL

Связи в таблицах mySQL

Professional Development

7 Qs

All About PMEBGE

All About PMEBGE

KG - Professional Development

7 Qs

THE RIGHT METHODS OF CONDUCTING SCIENTIFIC RESEARCH

THE RIGHT METHODS OF CONDUCTING SCIENTIFIC RESEARCH

Professional Development

7 Qs

Collection Mikro - Post Test - Day 1

Collection Mikro - Post Test - Day 1

Professional Development

6 Qs

TestSample

TestSample

Assessment

Quiz

Other

University - Professional Development

Hard

Created by

Wasim Ahmed

Used 2+ times

FREE Resource

3 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of below code?


int x = 5;

System.out.println(x++);

System.out.println(x);

5

5

6

6

5

6

6

5

2.

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

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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.