Quiz

It's quiz time! Test yourself by solving these questions about doubly linked lists.

1

The code below is an implementation of the Node class for which of the following linked lists?

class Node:
    def __init__(self, data):
        self.data = data
        self.next = None
        self.prev = None
A)

Singly Linked Lists

B)

Circular Linked Lists

C)

Doubly Linked Lists

D)

None of the above

Question 1 of 50 attempted

Get hands-on with 1200+ tech skills courses.