Data Structure (QUEUE)

Data Structure (QUEUE)

1st - 2nd Grade

20 Qs

quiz-placeholder

Similar activities

PH_Berfikir Komputasinal (BK)

PH_Berfikir Komputasinal (BK)

1st Grade

25 Qs

Tumpukan dan Antrian dalam Informatika

Tumpukan dan Antrian dalam Informatika

1st Grade

20 Qs

Data Structure unit 2

Data Structure unit 2

1st - 5th Grade

20 Qs

BERPIKIR KOMPUTASIONAL

BERPIKIR KOMPUTASIONAL

1st - 2nd Grade

20 Qs

Data Structures

Data Structures

1st - 3rd Grade

20 Qs

latihan informatika bab1

latihan informatika bab1

1st - 2nd Grade

25 Qs

Operating Systems

Operating Systems

KG - University

20 Qs

Quiz Stack & Queue 1

Quiz Stack & Queue 1

1st - 5th Grade

16 Qs

Data Structure (QUEUE)

Data Structure (QUEUE)

Assessment

Quiz

Computers

1st - 2nd Grade

Hard

Used 136+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of the following is an application of Queue Data Structure?

When a resource is shared among multiple consumers.

When data is transferred asynchronously (data not necessarily received at same rate as sent) between two processes

Load Balancing

All of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many stacks are needed to implement a queue. Consider the situation where no other data structure like arrays, linked list is available to you.

1

2

3

4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many queues are needed to implement a stack. Consider the situation where no other data structure like arrays, linked list is available to you.

1

2

3

4

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

A priority queue can efficiently implemented using which of the following data structures? Assume that the number of insert and peek (operation to see the current highest priority item) and extraction (remove the highest priority item) operations are almost same.

Array

Linked List

Heap Data Structure like Binary Heap, Fibonacci Heap

None of the above

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is true about linked list implementation of queue?

In the push operation, if new nodes are inserted at the beginning of linked list, then in pop operation, nodes must be removed from end.

In push operation, if new nodes are inserted at the end, then in pop operation, nodes must be removed from the beginning.

None of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A Priority-Queue is implemented as a Max-Heap. Initially, it has 5 elements. The level-order traversal of the heap is given below :

10, 8, 5, 3, 2

Two new elements “1” and “7” are inserted in the heap in that order. The level-order traversal of the heap after the insertion of the elements is :

10, 8, 7, 5, 3, 2, 1

10, 8, 7, 2, 3, 1, 5

10, 8, 7, 1, 2, 3, 5

10, 8, 7, 3, 2, 1, 5

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

A queue is implemented using array such that ENQUEUE and DEQUEUE operations are performed efficiently. Which one of the following statements is CORRECT (n refers to the number of items in the queue) ?

Both operations can be performed in O(1) time

At most one operation can be performed in O(1) time but the worst case time for the other operations will be Ω(n)

The worst case time complexity for both operations will be Ω(n)

Worst case time complexity for both operations will be Ω(log n)

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?

Discover more resources for Computers