Quiz

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

We'll cover the following...
Technical Quiz
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


1 / 5