Solved

Which of the Following Statements Deletes the First Node of a Linear

Question 56

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions