Which of these packages contain all the collection classes?

Quiz on Java Collection

Quiz
•
Computers
•
University
•
Hard
Jagadish Sahoo
Used 8+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
20 sec • 1 pt
java.lang
java.util
java.net
java.awt
2.
MULTIPLE CHOICE QUESTION
20 sec • 1 pt
Which of these classes is not part of Java’s collection framework?
Maps
Array
Stack
Queue
3.
MULTIPLE CHOICE QUESTION
20 sec • 1 pt
Which of this interface is not a part of Java’s collection framework?
List
Set
SortedMap
SortedList
4.
MULTIPLE CHOICE QUESTION
20 sec • 1 pt
Which of these methods deletes all the elements from invoking collection?
clear()
reset()
delete()
refresh()
5.
MULTIPLE CHOICE QUESTION
20 sec • 1 pt
What is Collection in Java?
A group of objects
A group of classes
A group of interfaces
None of the mentioned
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following Java program?
import java.util.*;
class Array
{
public static void main(String args[])
{
int array[] = new int [5];
for (int i = 5; i > 0; i--)
array[5-i] = i;
Arrays.fill(array, 1, 4, 8);
for (int i = 0; i < 5 ; i++)
System.out.print(array[i]);
}
}
12885
12845
58881
54881
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following Java program?
import java.util.*;
class Bitset
{
public static void main(String args[])
{
BitSet obj = new BitSet(5);
for (int i = 0; i < 5; ++i)
obj.set(i);
obj.clear(2);
System.out.print(obj);
}
}
{0, 1, 3, 4}
{0, 1, 2, 4}
{0, 1, 2, 3, 4}
{0, 0, 0, 3, 4}
Create a free account and access millions of resources
Similar Resources on Quizizz
15 questions
Dasar Algoritma dan Pemrograman

Quiz
•
7th Grade - University
20 questions
Multithreading in java

Quiz
•
University
18 questions
Data Structures Quiz 1

Quiz
•
12th Grade - University
17 questions
Java Programming Quiz

Quiz
•
University
20 questions
UTS - Struktur Data

Quiz
•
University
15 questions
Шаблоны проектирования

Quiz
•
University
20 questions
Collections C#

Quiz
•
University
20 questions
Week 2 - Assessment 2 (ITNW0223)

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade