Queues

Queues

University

7 Qs

quiz-placeholder

Similar activities

Data Structures

Data Structures

University

12 Qs

DSA Launchpad 2.0

DSA Launchpad 2.0

University

10 Qs

DS Quiz1

DS Quiz1

University

10 Qs

Data Structure Quiz 1

Data Structure Quiz 1

University

9 Qs

UNIT-2 QUEUE PROBLEM

UNIT-2 QUEUE PROBLEM

University

5 Qs

Linked List 2

Linked List 2

University

10 Qs

Data structures

Data structures

University

12 Qs

Queues Multiple Choice Question

Queues Multiple Choice Question

University

12 Qs

Queues

Queues

Assessment

Quiz

Computers

University

Medium

Created by

Gautam Gupta

Used 6+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 5 pts

A queue follows __________.

First In Last Out

First In First Out

Last In First Out

2.

FILL IN THE BLANK QUESTION

20 sec • 5 pts

If elements are inserted in the order -10,-2,-3,4,-1,6 in a queue, then to delete value -3 how many dequeue operations are required?

3.

MULTIPLE CHOICE QUESTION

1 min • 10 pts

Media Image

What does this function do in general?

Keeps the Q same as it was before the call i.e. no chnage observed.

Remove the last element of the Q.

Reverse the Q.

Empty the Q.

4.

MULTIPLE CHOICE QUESTION

20 sec • 5 pts

In Queue Insertion & Deletion take place at ________________.

same end

first end

different end

last end

5.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

A queue of characters currently contained A, B, C, D.

What would be the contents of queue after the following operation : DELETE, ADD W, ADD X, DELETE, ADD Y.

A,B,C,W,Y

A,B,C,D,W

C,D,W,X,Y

W,Y,X,C,D

6.

MULTIPLE SELECT QUESTION

45 sec • 10 pts

Which of the following application(s) is/are related to Queue Data Structure? There can be more than one correct answer.

Load Balancing

BFS (Breath First Search)

Recursion

Printer Spooling

Undo and Redo mechanism in text editors.

7.

MULTIPLE CHOICE QUESTION

45 sec • 10 pts

Media Image

"Queue" is a queue data structure that stores integers. What does the function fun do?

Prints numbers from 0 to n-1

Prints numbers from n-1 to 0

Prints first n Fibonacci numbers

Prints fibonacci numbers between 0 and n-1