(Choose 1 answer)
Suppose a doubly linked list of integers is given below and p is a reference to the node with value 15 in the list (i.e. p.info=15):
(head) 7 11 6 4 3 15 8 12 (tail)
What does the list look like after the following java code snippet is run?
int x = 35;Node f = p.prev; // prev is a link to predecessor node Node q = new Node(x); // Create new node with value x
q.prev = f; q.next = p;f.next = q; p.prev = q;
A. 7 11 6 4 3 35 15 8 12
B. 35 7 11 6 4 3 15 8 12
C. 7 11 6 4 3 15 8 12 35
D. 7 11 6 4 3 15 8 35 12
Ε. 7 11 6 4 3 15 35 8 12
Q: 16