HOTS on Heaps and Sets

HOTS on Heaps and Sets

12th Grade

97 Qs

quiz-placeholder

Similar activities

CS / IP Marathon (SQL & CN)

CS / IP Marathon (SQL & CN)

12th Grade

100 Qs

Aptech Finals

Aptech Finals

12th Grade

94 Qs

A Level Computer Science - Paper 1 (All Key Terms)

A Level Computer Science - Paper 1 (All Key Terms)

12th Grade

100 Qs

ENSA MIDTERM 7,8,9

ENSA MIDTERM 7,8,9

12th Grade - Professional Development

100 Qs

Latihan ASAS Informatika 9

Latihan ASAS Informatika 9

9th - 12th Grade

100 Qs

JS- Animation Basics - Intro to Programming - KhanAcademy

JS- Animation Basics - Intro to Programming - KhanAcademy

9th - 12th Grade

100 Qs

High and Low Languages

High and Low Languages

12th Grade

100 Qs

HOTS on Heaps and Sets

HOTS on Heaps and Sets

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Riggs Manuel Sacdalan

Used 1+ times

FREE Resource

97 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements correctly describes a Min Heap?

The value of each parent node is greater than or equal to its child nodes.

The value of each parent node is less than or equal to its child nodes.

The value of each node is unique and arranged randomly.

The root node must always be a negative number.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a Max Heap, the root node:

Has no child nodes.

Has the smallest value in the heap.

Contains the highest value compared to its child nodes.

Is always equal to 1.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method retrieves the root node of a heap in Java?

add()

get(0)

remove()

poll()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following Java code snippet: ArrayList heap = new ArrayList<>(); Collections.addAll(heap, 2, 5, 1, 9, 4); Which index contains the root node?

1

0

4

2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A priority queue processes elements based on:

FIFO (First-In, First-Out) order.

The insertion order.

Their priority (natural or custom).

Their memory location.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To create a priority queue in Java using custom ordering, you need a:

HashSet.

Comparator.

TreeSet.

LinkedList.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which Java interface provides methods like comparing() and compare() for custom sorting in priority queues?

Iterable

Comparator

Queue

HashSet

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?