DSA Quiz 24.7.2024

DSA Quiz 24.7.2024

University

5 Qs

quiz-placeholder

Similar activities

Seatwork HASH (Data Structure)

Seatwork HASH (Data Structure)

University

10 Qs

Pseudo Part 2

Pseudo Part 2

7th Grade - University

6 Qs

DSA quiz

DSA quiz

University

10 Qs

Structure Data Review

Structure Data Review

University - Professional Development

10 Qs

BCSC0006 Quiz Collections

BCSC0006 Quiz Collections

University

10 Qs

CSC248 Revision 1

CSC248 Revision 1

University

10 Qs

CHAPTER 3: STACK

CHAPTER 3: STACK

University

10 Qs

Data structure and Algorithm

Data structure and Algorithm

University

5 Qs

DSA Quiz 24.7.2024

DSA Quiz 24.7.2024

Assessment

Quiz

Computers

University

Medium

Created by

Dr. 2397

Used 3+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q1. A linear list of elements in which deletion can be done from one end (front) and insertion can take place only at the other end (rear) is known as _____________

Tree

Stack

Queue

Linked list

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q2. A queue follows __________

Array

Ordered array

LIFO (Last In First Out) principle

FIFO (First In First Out) principle

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q3. If the elements “A”, “B”, “C” and “D” are placed in a queue and are deleted one at a time, in what order will they be removed?

ABDC

DCAB

DCBA

ABCD

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q4. Which of the following is NOT a common operation in a queue data structure? 

Enqueue 

Dequeue 


Peek 

Shuffle 

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Q5. Types of Queue

Linear and Circular

Stack

Array and List

Ring Buffer