DSA Quiz 24.7.2024

DSA Quiz 24.7.2024

University

5 Qs

quiz-placeholder

Similar activities

Data Structures Quiz-2

Data Structures Quiz-2

University

10 Qs

Struktur Data Last Meeting

Struktur Data Last Meeting

University

10 Qs

DSA - Intro

DSA - Intro

University

10 Qs

Data Structure

Data Structure

University

10 Qs

DS Quiz1

DS Quiz1

University

10 Qs

Data Structure Revision Continuous

Data Structure Revision Continuous

University

10 Qs

special

special

University

10 Qs

DATA STRUCTURE QUIZ 1- INTRO TO DATA STRUCTURES

DATA STRUCTURE QUIZ 1- INTRO TO DATA STRUCTURES

University

10 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