✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dado el siguiente fragmento de código. ¿Cuál de las siguientes expresiones tiene el valor nulo?:
Node p = new Node(12);
Node q = new Node(5);
p.next = q;
q.next = p;