Multiple Choice
Which of the following statements deletes the first node of a linear linked list that has 10 nodes?
A) head.setNext(curr.getNext() ) ;
B) prev.setNext(curr.getNext() ) ;
C) head = head.getNext() ;
D) head = null;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q50: What is a dummy head node?
Q51: Which of the following exceptions can be
Q52: What is the difference between a linear
Q53: Which of the following is true about
Q54: If the implementation of a linked list
Q55: A dummy head node _.<br>A)facilitates adding nodes
Q57: Which of the following CANNOT be used
Q58: A _ can be used to store
Q59: Which of the following statements deletes the
Q60: A _ allows the deletion of a