Kizspy | Question: 12
(Choose 1 answer)
PUUVERY, JW .COM
What does the following code do?
class Node:
def
init_(self, data):
self.data data
self.next=None
self.prev = None
A. Create a node of singly linked list
B. Create a node of circular linked list
C. Create a node of doubly linked list
D. None of these