Doubly Linked List

Doubly Linked List

University

5 Qs

quiz-placeholder

Similar activities

Quiz 1

Quiz 1

University

10 Qs

Quiz on Linked Lists and Recursion

Quiz on Linked Lists and Recursion

University

10 Qs

DS Quiz for 4th Sep.

DS Quiz for 4th Sep.

University

6 Qs

หน่วยการเรียนรู้ เรื่อง ลิงค์ลิสต์ (Linked List)

หน่วยการเรียนรู้ เรื่อง ลิงค์ลิสต์ (Linked List)

University

10 Qs

Final Practice

Final Practice

University

7 Qs

2025_DSA_LinkedList

2025_DSA_LinkedList

University

10 Qs

data structure

data structure

University

5 Qs

CLLANDDLL

CLLANDDLL

University

10 Qs

Doubly Linked List

Doubly Linked List

Assessment

Quiz

Computers

University

Medium

Created by

Kaladevi a.c.

Used 115+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

In doubly linked lists, traversal can be performed?

a) Only in forward direction

b) Only in reverse direction

c) In both directions

d) In circular fashion

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Memory is allocated dynamically to a data structured during execution by -------------

a) malloc()

b) calloc()

c) realloc()

d) all of the above

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following operations is performed more efficiently by doubly linked list than by singly linked list?

a) Deleting a node whose location in given

b) Searching of an unsorted list for a given item

c) Inverting a node after the node with given location

d) Traversing a list to process each node

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is a memory efficient double linked list?

a) Each node has only one pointer to traverse the list back and forth

b) The list has breakpoints for faster traversal

c) An auxiliary singly linked list acts as a helper list to traverse through the doubly linked list

d) A doubly linked list that uses bitwise AND operator for storing addresses

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is false about a doubly linked list?

a) We can navigate in both the directions

b) It requires more space than a singly linked list

c) The insertion and deletion of a node take a bit longer

d) Implementing a doubly linked list is easier than singly linked list