DS_WeeklyTest-4

DS_WeeklyTest-4

University

30 Qs

quiz-placeholder

Similar activities

Data structures:  Chapter 2| 1

Data structures: Chapter 2| 1

University

34 Qs

DSC UNIT 3

DSC UNIT 3

University

26 Qs

CS 213 - Data Structures and Algorithm

CS 213 - Data Structures and Algorithm

University

25 Qs

Data Structures Quiz

Data Structures Quiz

University

26 Qs

EC8393_FDS_MODEL EXAM_3_PART A

EC8393_FDS_MODEL EXAM_3_PART A

University

30 Qs

Data Structure & Algorithm-Quiz-1

Data Structure & Algorithm-Quiz-1

University

30 Qs

Data Structures and Algorithms Quiz

Data Structures and Algorithms Quiz

University

30 Qs

Trees, Linked Lists, Stacks and Queues

Trees, Linked Lists, Stacks and Queues

11th Grade - University

30 Qs

DS_WeeklyTest-4

DS_WeeklyTest-4

Assessment

Quiz

Computers

University

Easy

Created by

geetha rani

Used 6+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

1.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 a ?

Queue

Stack

Tree

Linked list

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

2.A queue is a ?

FIFO (First In First Out) list

LIFO (Last In First Out) list.

Ordered array

Linear tree

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

3. 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?

ABCD

DCBA

DCAB

ABCD

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

4. In the array implementation of circular queue, which of the following operation take worst case linear time?

Insertion

Deletion

To empty a queue

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

5.In linked list implementation of queue, if only front pointer is maintained, which of the following operation take worst case linear time?

Insertion

Deletion

To empty a queue

Both a) and c)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

6.If the MAX_SIZE is the size of the array used in the implementation of circular queue. How is rear manipulated while inserting an element in the queue?

rear=(rear%1)+MAX_SIZE

rear=rear%(MAX_SIZE+1)

rear=(rear+1)%MAX_SIZE

rear=rear+(1%MAX_SIZE)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

7.If the MAX_SIZE is the size of the array used in the implementation of circular queue, array index start with 0, front point to the first element in the queue, and rear point to the last element in the queue. Which of the following condition specify that circular queue is FULL?

Front=rear= -1

Front=(rear+1)%MAX_SIZE

Rear=front+1

Rear=(front+1)%MAX_SIZE

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?